The patch titled w1_ds2760: fix binary file read callback signature has been added to the -mm tree. Its filename is w1_ds2760-fix-binary-file-read-callback-signature.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: w1_ds2760: fix binary file read callback signature From: Evgeniy Polyakov <johnpol@xxxxxxxxxxx> Commit 91a6902958f052358899f58683d44e36228d85c2 changed the binary sysfs file signatures at the same time the w1_ds2760 driver was added. Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Signed-off-by: Evgeniy Polyakov <johnpol@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/w1/slaves/w1_ds2760.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/w1/slaves/w1_ds2760.c~w1_ds2760-fix-binary-file-read-callback-signature drivers/w1/slaves/w1_ds2760.c --- a/drivers/w1/slaves/w1_ds2760.c~w1_ds2760-fix-binary-file-read-callback-signature +++ a/drivers/w1/slaves/w1_ds2760.c @@ -68,8 +68,9 @@ int w1_ds2760_write(struct device *dev, return w1_ds2760_io(dev, buf, addr, count, 1); } -static ssize_t w1_ds2760_read_bin(struct kobject *kobj, char *buf, loff_t off, - size_t count) +static ssize_t w1_ds2760_read_bin(struct kobject *kobj, + struct bin_attribute *bin_attr, + char *buf, loff_t off, size_t count) { struct device *dev = container_of(kobj, struct device, kobj); return w1_ds2760_read(dev, buf, off, count); _ Patches currently in -mm which might be from johnpol@xxxxxxxxxxx are origin.patch w1_ds2760-fix-binary-file-read-callback-signature.patch use-menuconfig-objects-connector.patch use-menuconfig-objects-w1.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html