aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-07-15 16:01:22 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-15 19:40:52 -0400
commit05bd711ea2862cb1c754903326b7858bc700b2e9 (patch)
treeaec7cdf2fee4576ff2563090ba8907bc10a68713 /drivers
parentececfdee1cc287123149c801af201e41c7c3cc84 (diff)
missing argument in bin_attribute ->read()/->write()
Fallout from commit 91a6902958f052358899f58683d44e36228d85c2 ('sysfs: add parameter "struct bin_attribute *" ...') Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i2c/chips/ds1682.c8
-rw-r--r--drivers/w1/slaves/w1_ds2760.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/i2c/chips/ds1682.c b/drivers/i2c/chips/ds1682.c
index 25fd4676fb17..5879f0f25495 100644
--- a/drivers/i2c/chips/ds1682.c
+++ b/drivers/i2c/chips/ds1682.c
@@ -140,8 +140,8 @@ static const struct attribute_group ds1682_group = {
140/* 140/*
141 * User data attribute 141 * User data attribute
142 */ 142 */
143static ssize_t ds1682_eeprom_read(struct kobject *kobj, char *buf, loff_t off, 143static ssize_t ds1682_eeprom_read(struct kobject *kobj, struct bin_attribute *attr,
144 size_t count) 144 char *buf, loff_t off, size_t count)
145{ 145{
146 struct i2c_client *client = kobj_to_i2c_client(kobj); 146 struct i2c_client *client = kobj_to_i2c_client(kobj);
147 int rc; 147 int rc;
@@ -163,8 +163,8 @@ static ssize_t ds1682_eeprom_read(struct kobject *kobj, char *buf, loff_t off,
163 return count; 163 return count;
164} 164}
165 165
166static ssize_t ds1682_eeprom_write(struct kobject *kobj, char *buf, loff_t off, 166static ssize_t ds1682_eeprom_write(struct kobject *kobj, struct bin_attribute *attr,
167 size_t count) 167 char *buf, loff_t off, size_t count)
168{ 168{
169 struct i2c_client *client = kobj_to_i2c_client(kobj); 169 struct i2c_client *client = kobj_to_i2c_client(kobj);
170 170
diff --git a/drivers/w1/slaves/w1_ds2760.c b/drivers/w1/slaves/w1_ds2760.c
index 88a37fbccc3f..1f2b1a4d5fb3 100644
--- a/drivers/w1/slaves/w1_ds2760.c
+++ b/drivers/w1/slaves/w1_ds2760.c
@@ -68,8 +68,8 @@ int w1_ds2760_write(struct device *dev, char *buf, int addr, size_t count)
68 return w1_ds2760_io(dev, buf, addr, count, 1); 68 return w1_ds2760_io(dev, buf, addr, count, 1);
69} 69}
70 70
71static ssize_t w1_ds2760_read_bin(struct kobject *kobj, char *buf, loff_t off, 71static ssize_t w1_ds2760_read_bin(struct kobject *kobj, struct bin_attribute *attr,
72 size_t count) 72 char *buf, loff_t off, size_t count)
73{ 73{
74 struct device *dev = container_of(kobj, struct device, kobj); 74 struct device *dev = container_of(kobj, struct device, kobj);
75 return w1_ds2760_read(dev, buf, off, count); 75 return w1_ds2760_read(dev, buf, off, count);