aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaitanya Kulkarni <[email protected]>2021-01-25 15:32:36 -0800
committerThomas Bogendoerfer <[email protected]>2021-02-21 23:37:52 +0100
commit9ee8c9a1c752f6181c1403fa5b4da620b410d9af (patch)
tree4a66a19c0f09b5ada323eb26e9fa8269ce2ee476
parentf1e19224f5948ae61ff9972d35d3cd7176815cd9 (diff)
n64: move module info at the end
Move the module auth, description, and license at the end of the file just like what we have for the other modules. Signed-off-by: Chaitanya Kulkarni <[email protected]> Reviewed-by: Lauri Kasanen <[email protected]> Signed-off-by: Thomas Bogendoerfer <[email protected]>
-rw-r--r--drivers/block/n64cart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/n64cart.c b/drivers/block/n64cart.c
index 8c7c9249071b..63090030ed2b 100644
--- a/drivers/block/n64cart.c
+++ b/drivers/block/n64cart.c
@@ -13,10 +13,6 @@
#include <linux/module.h>
#include <linux/platform_device.h>
-MODULE_AUTHOR("Lauri Kasanen <[email protected]>");
-MODULE_DESCRIPTION("Driver for the N64 cart");
-MODULE_LICENSE("GPL");
-
static unsigned int start, size;
static u32 __iomem *reg_base;
static struct device *dev;
@@ -188,3 +184,7 @@ module_param(size, uint, 0);
MODULE_PARM_DESC(size, "Size of the cart block data, in bytes");
module_init(n64cart_init);
+
+MODULE_AUTHOR("Lauri Kasanen <[email protected]>");
+MODULE_DESCRIPTION("Driver for the N64 cart");
+MODULE_LICENSE("GPL");