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 /drivers/scsi/qla4xxx | |
parent | 9104e427f3e21ddb380ddc39752624365b5bffea (diff) |
switch ->is_visible() to returning umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/scsi/qla4xxx')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_os.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index 4169c8baa112..78bf700b365f 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c | |||
@@ -128,7 +128,7 @@ static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd); | |||
128 | static int qla4xxx_slave_alloc(struct scsi_device *device); | 128 | static int qla4xxx_slave_alloc(struct scsi_device *device); |
129 | static int qla4xxx_slave_configure(struct scsi_device *device); | 129 | static int qla4xxx_slave_configure(struct scsi_device *device); |
130 | static void qla4xxx_slave_destroy(struct scsi_device *sdev); | 130 | static void qla4xxx_slave_destroy(struct scsi_device *sdev); |
131 | static mode_t ql4_attr_is_visible(int param_type, int param); | 131 | static umode_t ql4_attr_is_visible(int param_type, int param); |
132 | static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type); | 132 | static int qla4xxx_host_reset(struct Scsi_Host *shost, int reset_type); |
133 | 133 | ||
134 | static struct qla4_8xxx_legacy_intr_set legacy_intr[] = | 134 | static struct qla4_8xxx_legacy_intr_set legacy_intr[] = |
@@ -197,7 +197,7 @@ static struct iscsi_transport qla4xxx_iscsi_transport = { | |||
197 | 197 | ||
198 | static struct scsi_transport_template *qla4xxx_scsi_transport; | 198 | static struct scsi_transport_template *qla4xxx_scsi_transport; |
199 | 199 | ||
200 | static mode_t ql4_attr_is_visible(int param_type, int param) | 200 | static umode_t ql4_attr_is_visible(int param_type, int param) |
201 | { | 201 | { |
202 | switch (param_type) { | 202 | switch (param_type) { |
203 | case ISCSI_HOST_PARAM: | 203 | case ISCSI_HOST_PARAM: |
@@ -3039,7 +3039,7 @@ static ssize_t qla4xxx_show_boot_eth_info(void *data, int type, char *buf) | |||
3039 | return rc; | 3039 | return rc; |
3040 | } | 3040 | } |
3041 | 3041 | ||
3042 | static mode_t qla4xxx_eth_get_attr_visibility(void *data, int type) | 3042 | static umode_t qla4xxx_eth_get_attr_visibility(void *data, int type) |
3043 | { | 3043 | { |
3044 | int rc; | 3044 | int rc; |
3045 | 3045 | ||
@@ -3073,7 +3073,7 @@ static ssize_t qla4xxx_show_boot_ini_info(void *data, int type, char *buf) | |||
3073 | return rc; | 3073 | return rc; |
3074 | } | 3074 | } |
3075 | 3075 | ||
3076 | static mode_t qla4xxx_ini_get_attr_visibility(void *data, int type) | 3076 | static umode_t qla4xxx_ini_get_attr_visibility(void *data, int type) |
3077 | { | 3077 | { |
3078 | int rc; | 3078 | int rc; |
3079 | 3079 | ||
@@ -3160,7 +3160,7 @@ static ssize_t qla4xxx_show_boot_tgt_sec_info(void *data, int type, char *buf) | |||
3160 | return qla4xxx_show_boot_tgt_info(boot_sess, type, buf); | 3160 | return qla4xxx_show_boot_tgt_info(boot_sess, type, buf); |
3161 | } | 3161 | } |
3162 | 3162 | ||
3163 | static mode_t qla4xxx_tgt_get_attr_visibility(void *data, int type) | 3163 | static umode_t qla4xxx_tgt_get_attr_visibility(void *data, int type) |
3164 | { | 3164 | { |
3165 | int rc; | 3165 | int rc; |
3166 | 3166 | ||