Commit 9ee8c9a1 authored by Chaitanya Kulkarni's avatar Chaitanya Kulkarni Committed by Thomas Bogendoerfer
Browse files

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: default avatarChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: default avatarLauri Kasanen <cand@gmx.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent f1e19224
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -13,10 +13,6 @@
#include <linux/module.h>
#include <linux/platform_device.h>

MODULE_AUTHOR("Lauri Kasanen <cand@gmx.com>");
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 <cand@gmx.com>");
MODULE_DESCRIPTION("Driver for the N64 cart");
MODULE_LICENSE("GPL");