diff options
author | Evgeniy Polyakov <johnpol@2ka.mipt.ru> | 2005-05-20 22:49:08 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2005-06-22 08:43:09 +0400 |
commit | ca775c629a366ded01aae69da8410f70aaf85de1 (patch) | |
tree | 2e8138bb6aca6d1d699138d57809e8673abeb7aa /drivers/w1/w1.h | |
parent | 7785925dd8e0d2f389d4a9168f1683c6b249a552 (diff) | |
download | linux-ca775c629a366ded01aae69da8410f70aaf85de1.tar.xz |
[PATCH] w1: new family structure.
Removed some fields which are not required.
First step for writing operations.
Now only read and read name remain.
Patch depends on w1 cleanups patch.
Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/w1/w1.h')
-rw-r--r-- | drivers/w1/w1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h index 90a2e737d2ca..44dfb92e55cd 100644 --- a/drivers/w1/w1.h +++ b/drivers/w1/w1.h @@ -79,7 +79,7 @@ struct w1_slave struct completion dev_released; struct bin_attribute attr_bin; - struct device_attribute attr_name, attr_val; + struct device_attribute attr_name; }; typedef void (* w1_slave_found_callback)(unsigned long, u64); |