mptfusion: hide unused seq_mpt_print_ioc_summary function
authorArnd Bergmann <arnd@arndb.de>
Wed, 27 Jan 2016 15:57:18 +0000 (16:57 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Sun, 4 Mar 2018 15:28:29 +0000 (10:28 -0500)
commite88f69a37cfa13c92e3e9e62cb428f270dd11380
tree846a5bc5654ba8bac475b9b80b9628c9513e2cee
parent71e7340520f03a393775ad1884a664a6a05fc740
mptfusion: hide unused seq_mpt_print_ioc_summary function

[ Upstream commit 28558f5af50d8335cbbc8bc2726e0747553e29f5 ]

The seq_mpt_print_ioc_summary function is used for the
/proc/mpt/iocN/summary implementation and never gets called when
CONFIG_PROC_FS is disabled:

drivers/message/fusion/mptbase.c:6851:13: warning: 'seq_mpt_print_ioc_summary' defined but not used [-Wunused-function]
 static void seq_mpt_print_ioc_summary(MPT_ADAPTER *ioc, struct seq_file *m, int showlan)

This adds an #ifdef to hide the function definition in that case and
avoid the warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/message/fusion/mptbase.c