My intention was to release this code under GPL v2 license. For some
reason my initial commit
0fc6a323e191 ("spi: bcm53xx: driver for SPI
controller on Broadcom bcma SoC") totally missed licensing info.
MODULE_LICENSE was later added by Axel specifying "GNU Public License
v2 or later".
This patch clarifies situation by adding a proper header (with Copyright
line) and adjusting MODULE_LICENSE. It should be acked by every driver
contributor.
Signed-off-by: Rafał Miłecki <[email protected]>
Acked-by: Nicholas Mc Guire <[email protected]>
Reviewed-by: Jingoo Han <[email protected]>
Acked-by: Jingoo Han <[email protected]>
Acked-by: Joe Perches <[email protected]>
Acked-by: Axel Lin <[email protected]>
Acked-by: Vaishali Thakkar <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
+/*
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/kernel.h>
MODULE_DESCRIPTION("Broadcom BCM53xx SPI Controller driver");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");