aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/be2iscsi/be_main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.c b/drivers/scsi/be2iscsi/be_main.c
index 6a6906f847db..68138a647dfc 100644
--- a/drivers/scsi/be2iscsi/be_main.c
+++ b/drivers/scsi/be2iscsi/be_main.c
@@ -61,7 +61,7 @@ MODULE_PARM_DESC(be_max_phys_size,
61 "memory that can be allocated. Range is 16 - 128"); 61 "memory that can be allocated. Range is 16 - 128");
62 62
63#define beiscsi_disp_param(_name)\ 63#define beiscsi_disp_param(_name)\
64ssize_t \ 64static ssize_t \
65beiscsi_##_name##_disp(struct device *dev,\ 65beiscsi_##_name##_disp(struct device *dev,\
66 struct device_attribute *attrib, char *buf) \ 66 struct device_attribute *attrib, char *buf) \
67{ \ 67{ \
@@ -74,7 +74,7 @@ beiscsi_##_name##_disp(struct device *dev,\
74} 74}
75 75
76#define beiscsi_change_param(_name, _minval, _maxval, _defaval)\ 76#define beiscsi_change_param(_name, _minval, _maxval, _defaval)\
77int \ 77static int \
78beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\ 78beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
79{\ 79{\
80 if (val >= _minval && val <= _maxval) {\ 80 if (val >= _minval && val <= _maxval) {\
@@ -93,7 +93,7 @@ beiscsi_##_name##_change(struct beiscsi_hba *phba, uint32_t val)\
93} 93}
94 94
95#define beiscsi_store_param(_name) \ 95#define beiscsi_store_param(_name) \
96ssize_t \ 96static ssize_t \
97beiscsi_##_name##_store(struct device *dev,\ 97beiscsi_##_name##_store(struct device *dev,\
98 struct device_attribute *attr, const char *buf,\ 98 struct device_attribute *attr, const char *buf,\
99 size_t count) \ 99 size_t count) \
@@ -112,7 +112,7 @@ beiscsi_##_name##_store(struct device *dev,\
112} 112}
113 113
114#define beiscsi_init_param(_name, _minval, _maxval, _defval) \ 114#define beiscsi_init_param(_name, _minval, _maxval, _defval) \
115int \ 115static int \
116beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \ 116beiscsi_##_name##_init(struct beiscsi_hba *phba, uint32_t val) \
117{ \ 117{ \
118 if (val >= _minval && val <= _maxval) {\ 118 if (val >= _minval && val <= _maxval) {\
@@ -4584,7 +4584,7 @@ free_hndls:
4584 io_task->cmd_bhs = NULL; 4584 io_task->cmd_bhs = NULL;
4585 return -ENOMEM; 4585 return -ENOMEM;
4586} 4586}
4587int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg, 4587static int beiscsi_iotask_v2(struct iscsi_task *task, struct scatterlist *sg,
4588 unsigned int num_sg, unsigned int xferlen, 4588 unsigned int num_sg, unsigned int xferlen,
4589 unsigned int writedir) 4589 unsigned int writedir)
4590{ 4590{
@@ -4973,7 +4973,7 @@ static int beiscsi_bsg_request(struct bsg_job *job)
4973 return rc; 4973 return rc;
4974} 4974}
4975 4975
4976void beiscsi_hba_attrs_init(struct beiscsi_hba *phba) 4976static void beiscsi_hba_attrs_init(struct beiscsi_hba *phba)
4977{ 4977{
4978 /* Set the logging parameter */ 4978 /* Set the logging parameter */
4979 beiscsi_log_enable_init(phba, beiscsi_log_enable); 4979 beiscsi_log_enable_init(phba, beiscsi_log_enable);