aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <lg@denx.de>2008-06-05 10:45:02 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-07-03 13:24:58 +0100
commitb5f0228afa7810f3cad1f2f741cc747a2378b890 (patch)
tree62bbd1f18c424129b9993dd8a39fd88327e37307
parent[ARM] 5136/1: pxa: fix PWM device order for pxa27x (diff)
downloadlinux-dev-b5f0228afa7810f3cad1f2f741cc747a2378b890.tar.xz
linux-dev-b5f0228afa7810f3cad1f2f741cc747a2378b890.zip
[ARM] 5078/1: pxa-pwm: Add missing MODULE_LICENSE to be able to build the driver
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 <g.liakhovetski@pengutronix.de> Acked-by: Eric Miao <eric.miao@marvell.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r--arch/arm/mach-pxa/pwm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/pwm.c b/arch/arm/mach-pxa/pwm.c
index fa9323ee854c..92fef391d990 100644
--- 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");