sysfs: add parameter "struct bin_attribute *" in .read/.write methods for sysfs binar...
[deliverable/linux.git] / drivers / w1 / slaves / w1_therm.c
index 8ba4e572e09c3a2768545799a7c58a5f28eb4b52..4318935678c5f68ad1559e4540f233fc30551a35 100644 (file)
@@ -42,7 +42,8 @@ static u8 bad_roms[][9] = {
                                {}
                        };
 
-static ssize_t w1_therm_read_bin(struct kobject *, char *, loff_t, size_t);
+static ssize_t w1_therm_read_bin(struct kobject *, struct bin_attribute *,
+                                char *, loff_t, size_t);
 
 static struct bin_attribute w1_therm_bin_attr = {
        .attr = {
@@ -158,7 +159,9 @@ static int w1_therm_check_rom(u8 rom[9])
        return 0;
 }
 
-static ssize_t w1_therm_read_bin(struct kobject *kobj, char *buf, loff_t off, size_t count)
+static ssize_t w1_therm_read_bin(struct kobject *kobj,
+                                struct bin_attribute *bin_attr,
+                                char *buf, loff_t off, size_t count)
 {
        struct w1_slave *sl = kobj_to_w1_slave(kobj);
        struct w1_master *dev = sl->master;
This page took 0.029412 seconds and 5 git commands to generate.