From: Romain Izard Date: Tue, 23 Feb 2016 14:54:54 +0000 (+0100) Subject: serial: mctrl_gpio: Add missing module license X-Git-Tag: v4.6-rc1~118^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=82a3f87f6e80e0bf7978152021eb8938976721cb;p=karo-tx-linux.git serial: mctrl_gpio: Add missing module license As the mctrl_gpio driver can be built as a module, it needs to have its license specified with MODULE_LICENSE. Otherwise, it cannot access required symbols exported through EXPORT_SYMBOL_GPL. Signed-off-by: Romain Izard Acked-by: Uwe Kleine-König Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/serial_mctrl_gpio.c b/drivers/tty/serial/serial_mctrl_gpio.c index 226ad23b136c..02147361eaa9 100644 --- a/drivers/tty/serial/serial_mctrl_gpio.c +++ b/drivers/tty/serial/serial_mctrl_gpio.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "serial_mctrl_gpio.h" @@ -249,3 +250,5 @@ void mctrl_gpio_disable_ms(struct mctrl_gpios *gpios) } } EXPORT_SYMBOL_GPL(mctrl_gpio_disable_ms); + +MODULE_LICENSE("GPL");