[PATCH] [MIPS] sgi_btns: add license specification

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Dmitri Vorobiev
Date: Friday, October 24, 2008 - 3:46 pm

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: Dmitri Vorobiev <dmitri.vorobiev@movial.fi>
---
 drivers/input/misc/sgi_btns.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/input/misc/sgi_btns.c b/drivers/input/misc/sgi_btns.c
index ce238f5..be3a15f 100644
--- a/drivers/input/misc/sgi_btns.c
+++ b/drivers/input/misc/sgi_btns.c
@@ -174,5 +174,6 @@ static void __exit sgi_buttons_exit(void)
 	platform_driver_unregister(&sgi_buttons_driver);
 }
 
+MODULE_LICENSE("GPL");
 module_init(sgi_buttons_init);
 module_exit(sgi_buttons_exit);
-- 
1.5.4.3

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] [MIPS] IP22: Small cleanups, Dmitri Vorobiev, (Fri Oct 24, 3:46 pm)
[PATCH] [MIPS] sgi_btns: add license specification, Dmitri Vorobiev, (Fri Oct 24, 3:46 pm)
Re: [PATCH] [MIPS] IP22: Small cleanups, Ralf Baechle, (Sat Oct 25, 7:27 am)
Re: [PATCH] [MIPS] sgi_btns: add license specification, Ralf Baechle, (Sat Oct 25, 7:45 am)