mips: make loongsoon serial driver explicitly modular
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Tue, 2 Jun 2015 20:16:07 +0000 (16:16 -0400)
committerRalf Baechle <ralf@linux-mips.org>
Sun, 21 Jun 2015 19:54:12 +0000 (21:54 +0200)
commit85cc028817ef3f16880e8a9d65f64ca5a0192970
tree393d9b4ebd96e67bb4058b0fa06d705440c1790e
parent52ea7bff5ddc3f534aef28b7a20b9b11bf9a4df0
mips: make loongsoon serial driver explicitly modular

The file looks as if it is non-modular, but it piggy-backs
off CONFIG_SERIAL_8250 which is tristate.  If set to "=m"
we will get this after the init/module header cleanup:

arch/mips/loongson/common/serial.c:76:1: error: data definition has no type or storage class [-Werror]
arch/mips/loongson/common/serial.c:76:1: error: type defaults to 'int' in declaration of 'device_initcall' [-Werror=implicit-int]
arch/mips/loongson/common/serial.c:76:1: error: parameter names (without types) in function declaration [-Werror]
arch/mips/loongson/common/serial.c:58:19: error: 'serial_init' defined but not used [-Werror=unused-function]
cc1: all warnings being treated as errors
make[3]: *** [arch/mips/loongson/common/serial.o] Error 1

Make it clearly modular, and add a module_exit function,
so that we avoid the above breakage.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/loongson64/common/serial.c