Re: [PATCH 3/4] drivers: target: Mark functions as static intcm_loop.c

From: josh
Date: Wed Dec 18 2013 - 13:39:29 EST


On Thu, Dec 19, 2013 at 12:02:54AM +0530, Rashika Kheria wrote:
> 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@xxxxxxxxx>

Reviewed-by: Josh Triplett <josh@xxxxxxxxxxxxxxxx>

> drivers/target/loopback/tcm_loop.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c
> index 1b41e67..763ee45 100644
> --- a/drivers/target/loopback/tcm_loop.c
> +++ b/drivers/target/loopback/tcm_loop.c
> @@ -1228,7 +1228,7 @@ static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
>
> /* Start items for tcm_loop_naa_cit */
>
> -struct se_portal_group *tcm_loop_make_naa_tpg(
> +static struct se_portal_group *tcm_loop_make_naa_tpg(
> struct se_wwn *wwn,
> struct config_group *group,
> const char *name)
> @@ -1273,7 +1273,7 @@ struct se_portal_group *tcm_loop_make_naa_tpg(
> return &tl_tpg->tl_se_tpg;
> }
>
> -void tcm_loop_drop_naa_tpg(
> +static void tcm_loop_drop_naa_tpg(
> struct se_portal_group *se_tpg)
> {
> struct se_wwn *wwn = se_tpg->se_tpg_wwn;
> @@ -1305,7 +1305,7 @@ void tcm_loop_drop_naa_tpg(
>
> /* Start items for tcm_loop_cit */
>
> -struct se_wwn *tcm_loop_make_scsi_hba(
> +static struct se_wwn *tcm_loop_make_scsi_hba(
> struct target_fabric_configfs *tf,
> struct config_group *group,
> const char *name)
> @@ -1375,7 +1375,7 @@ out:
> return ERR_PTR(ret);
> }
>
> -void tcm_loop_drop_scsi_hba(
> +static void tcm_loop_drop_scsi_hba(
> struct se_wwn *wwn)
> {
> struct tcm_loop_hba *tl_hba = container_of(wwn,
> --
> 1.7.9.5
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/