diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-23 23:11:19 -0400 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:54:55 -0500 | 
| commit | 587a1f1659e8b330b8738ef4901832a2b63f0bed (patch) | |
| tree | b785c3f44ddba6ee036e02268502cdc961f55ea0 /include/linux/iscsi_boot_sysfs.h | |
| parent | 9104e427f3e21ddb380ddc39752624365b5bffea (diff) | |
| download | olio-linux-3.10-587a1f1659e8b330b8738ef4901832a2b63f0bed.tar.xz olio-linux-3.10-587a1f1659e8b330b8738ef4901832a2b63f0bed.zip  | |
switch ->is_visible() to returning umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/iscsi_boot_sysfs.h')
| -rw-r--r-- | include/linux/iscsi_boot_sysfs.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/iscsi_boot_sysfs.h b/include/linux/iscsi_boot_sysfs.h index f0a2f8b0aa1..2a8b1659bf3 100644 --- a/include/linux/iscsi_boot_sysfs.h +++ b/include/linux/iscsi_boot_sysfs.h @@ -91,7 +91,7 @@ struct iscsi_boot_kobj {  	 * The enum of the type. This can be any value of the above  	 * properties.  	 */ -	mode_t (*is_visible) (void *data, int type); +	umode_t (*is_visible) (void *data, int type);  	/*  	 * Driver specific release function. @@ -110,20 +110,20 @@ struct iscsi_boot_kobj *  iscsi_boot_create_initiator(struct iscsi_boot_kset *boot_kset, int index,  			    void *data,  			    ssize_t (*show) (void *data, int type, char *buf), -			    mode_t (*is_visible) (void *data, int type), +			    umode_t (*is_visible) (void *data, int type),  			    void (*release) (void *data));  struct iscsi_boot_kobj *  iscsi_boot_create_ethernet(struct iscsi_boot_kset *boot_kset, int index,  			   void *data,  			   ssize_t (*show) (void *data, int type, char *buf), -			   mode_t (*is_visible) (void *data, int type), +			   umode_t (*is_visible) (void *data, int type),  			   void (*release) (void *data));  struct iscsi_boot_kobj *  iscsi_boot_create_target(struct iscsi_boot_kset *boot_kset, int index,  			 void *data,  			 ssize_t (*show) (void *data, int type, char *buf), -			 mode_t (*is_visible) (void *data, int type), +			 umode_t (*is_visible) (void *data, int type),  			 void (*release) (void *data));  struct iscsi_boot_kset *iscsi_boot_create_kset(const char *set_name);  |