]> git.karo-electronics.de Git - karo-tx-linux.git/commit
drivers: target: Mark functions as static in tcm_loop.c
authorRashika Kheria <rashika.kheria@gmail.com>
Wed, 18 Dec 2013 18:32:54 +0000 (00:02 +0530)
committerNicholas Bellinger <nab@linux-iscsi.org>
Thu, 19 Dec 2013 00:09:33 +0000 (16:09 -0800)
commit4d2c294146321531bd00d15a75b1a877a07f65bb
tree52667d3639814648ce34e25ce764fc83068e5198
parentdf7705b54aa45d0df6be979e3fa32415a5aa3614
drivers: target: Mark functions as static in tcm_loop.c

Mark functions tcm_loop_make_naa_tpg(), tcm_loop_drop_naa_tpg(),
tcm_loop_make_scsi_hba() and tcm_loop_drop_scsi_hba() as static in
loopback/tcm_loop.c because they are not used outside this file.

This eliminates the following warning in loopback/tcm_loop.c:
drivers/target/loopback/tcm_loop.c:1231:25: warning: no previous prototype for ‘tcm_loop_make_naa_tpg’ [-Wmissing-prototypes]
drivers/target/loopback/tcm_loop.c:1276:6: warning: no previous prototype for ‘tcm_loop_drop_naa_tpg’ [-Wmissing-prototypes]
drivers/target/loopback/tcm_loop.c:1308:16: warning: no previous prototype for ‘tcm_loop_make_scsi_hba’ [-Wmissing-prototypes]
drivers/target/loopback/tcm_loop.c:1378:6: warning: no previous prototype for ‘tcm_loop_drop_scsi_hba’ [-Wmissing-prototypes]

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/loopback/tcm_loop.c