driver model: fix show/store prototypes in doc.

FIX prototypes for show & store method in struct driver_attribute

Signed-off-by: vibi sreenivasan <vibi_sreenivasan@cms.com>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by vibi sreenivasan and committed by Greg Kroah-Hartman 909662e1 308975fa

+2 -2
+2 -2
Documentation/driver-model/driver.txt
··· 207 207 ~~~~~~~~~~ 208 208 struct driver_attribute { 209 209 struct attribute attr; 210 - ssize_t (*show)(struct device_driver *, char * buf, size_t count, loff_t off); 211 - ssize_t (*store)(struct device_driver *, const char * buf, size_t count, loff_t off); 210 + ssize_t (*show)(struct device_driver *driver, char *buf); 211 + ssize_t (*store)(struct device_driver *, const char * buf, size_t count); 212 212 }; 213 213 214 214 Device drivers can export attributes via their sysfs directories.