diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/sysdev.h | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/sysdev.h b/include/linux/sysdev.h index f2767bc6b73..8dcf3162b21 100644 --- a/include/linux/sysdev.h +++ b/include/linux/sysdev.h @@ -99,8 +99,9 @@ extern void sysdev_unregister(struct sys_device *);  struct sysdev_attribute {   	struct attribute	attr; -	ssize_t (*show)(struct sys_device *, char *); -	ssize_t (*store)(struct sys_device *, const char *, size_t); +	ssize_t (*show)(struct sys_device *, struct sysdev_attribute *, char *); +	ssize_t (*store)(struct sys_device *, struct sysdev_attribute *, +			 const char *, size_t);  };  |