scsi: fas216: avoid fas216_log_setup for loadable module
authorArnd Bergmann <arnd@arndb.de>
Wed, 27 Jan 2016 15:57:20 +0000 (16:57 +0100)
committerMartin K. Petersen <martin.petersen@oracle.com>
Wed, 24 Feb 2016 02:27:02 +0000 (21:27 -0500)
commitdc0d79b5c9489da52ada177bfc4bf4e38b8e556f
tree4eb16bd1cffeb25a1bbac34c5e3b06da474f5f42
parent6fea7f6fbc1df232d9ff3d35080fb3e19eef4ef2
scsi: fas216: avoid fas216_log_setup for loadable module

We get a warning for the fas216 driver when it is compiled as a loadable
module, as the __setup() functions are never called then:

scsi/arm/fas216.c:101:19: warning: 'fas216_log_setup' defined but not used [-Wunused-function]
 static int __init fas216_log_setup(char *str)

This adds an #ifndef MODULE around the definition to shut up the warning
and clarify for the reader when it is used or not.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/arm/fas216.c