scsi: qla4xxx: Mark symbols static where possible
authorBaoyou Xie <baoyou.xie@linaro.org>
Mon, 29 Aug 2016 10:46:51 +0000 (18:46 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 2 Sep 2016 10:06:43 +0000 (06:06 -0400)
commit02ccda2a2ffba8750dcebe13a09ce5f671ffcda6
tree700e6bef2106284e16655a21abfb7b72efdef923
parentd67e8b385fac90c100fb65b9534616769cd3f9b8
scsi: qla4xxx: Mark symbols static where possible

We get 1 warning when build kernel with W=1:
drivers/scsi/qla4xxx/ql4_nx.c:1846:10: warning: no previous prototype for 'ql4_84xx_ipmdio_rd_reg' [-Wmissing-prototypes]

In fact, this function is only used in the file in which it is declared
and don't need a declaration, but can be made static. This patch marks
this function with 'static'.

Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Acked-by: Nilesh Javali <nilesh.javali@qlogic.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla4xxx/ql4_nx.c