Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c2bdcdc authored by Dmitri Vorobiev's avatar Dmitri Vorobiev Committed by Ralf Baechle
Browse files

INPUT: sgi_btns: Add license specification



The SGI Volume Button interface driver uses GPL-only symbols
platform_driver_unregister and platform_driver_register, but
lacks license specification. Thus, when compiled as a module,
this driver cannot be installed. This patch fixes this by
adding the MODULE_LICENSE() specification.

Signed-off-by: default avatarDmitri Vorobiev <dmitri.vorobiev@movial.fi>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 2f123e50
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -174,5 +174,6 @@ static void __exit sgi_buttons_exit(void)
	platform_driver_unregister(&sgi_buttons_driver);
	platform_driver_unregister(&sgi_buttons_driver);
}
}


MODULE_LICENSE("GPL");
module_init(sgi_buttons_init);
module_init(sgi_buttons_init);
module_exit(sgi_buttons_exit);
module_exit(sgi_buttons_exit);