aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafał Miłecki <[email protected]>2016-12-29 20:13:13 +0100
committerMark Brown <[email protected]>2017-01-06 18:21:50 +0000
commite360e72e715f228e426edf0fc99ffa34027ab0ad (patch)
tree8c31f24040791d04533fa95c345b425dc92128f0
parent78d759daceaf0a7058f37c4142bdca9948b6d987 (diff)
spi: bcm53xx: (re)license code to the GPL v2
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]>
-rw-r--r--drivers/spi/spi-bcm53xx.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/spi/spi-bcm53xx.c b/drivers/spi/spi-bcm53xx.c
index 0c61ad4edb1a..6e409eabe1c9 100644
--- a/drivers/spi/spi-bcm53xx.c
+++ b/drivers/spi/spi-bcm53xx.c
@@ -1,3 +1,11 @@
+/*
+ * Copyright (C) 2014-2016 Rafał Miłecki <[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>
@@ -355,4 +363,4 @@ module_exit(bcm53xxspi_module_exit);
MODULE_DESCRIPTION("Broadcom BCM53xx SPI Controller driver");
MODULE_AUTHOR("Rafał Miłecki <[email protected]>");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");