This patch adds the missing MODULE_LICENSE("GPL").
Reported-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
arch/mips/mips-boards/malta/malta_mtd.c | 3 +++
1 file changed, 3 insertions(+)
da2e8fd47a57f6e5c48dc0781db3aa7a46365c38 diff --git
a/arch/mips/mips-boards/malta/malta_mtd.c
b/arch/mips/mips-boards/malta/malta_mtd.c
index 8ad9bdf..dd38c12 100644
--- a/arch/mips/mips-boards/malta/malta_mtd.c
+++ b/arch/mips/mips-boards/malta/malta_mtd.c
@@ -8,6 +8,7 @@
*/
#include <linux/init.h>
+#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
@@ -61,3 +62,5 @@ static int __init malta_mtd_init(void)
}
module_init(malta_mtd_init)
+
+MODULE_LICENSE("GPL");
|