projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0b1c25d
)
[ARM] 5078/1: pxa-pwm: Add missing MODULE_LICENSE to be able to build the driver
author
Guennadi Liakhovetski
<
[email protected]
>
Thu, 5 Jun 2008 09:45:02 +0000
(10:45 +0100)
committer
Russell King
<
[email protected]
>
Thu, 3 Jul 2008 12:24:58 +0000
(13:24 +0100)
as a module
Without a GPL-compatible license this driver cannot be built as a module,
because the platform_driver_* API is only exported to GPL modules.
Signed-off-by: Guennadi Liakhovetski <
[email protected]
>
Acked-by: Eric Miao <
[email protected]
>
Signed-off-by: Russell King <
[email protected]
>
arch/arm/mach-pxa/pwm.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-pxa/pwm.c
b/arch/arm/mach-pxa/pwm.c
index fa9323ee854c7d779d8282cf96c0d8dac0e7656a..92fef391d990e957d3fa978c0a10ba9c9627b955 100644
(file)
--- a/
arch/arm/mach-pxa/pwm.c
+++ b/
arch/arm/mach-pxa/pwm.c
@@
-297,3
+297,5
@@
static void __exit pwm_exit(void)
platform_driver_unregister(&pxa27x_pwm_driver);
}
module_exit(pwm_exit);
+
+MODULE_LICENSE("GPL v2");