From: Chaitanya Kulkarni Date: Mon, 25 Jan 2021 23:32:36 +0000 (-0800) Subject: n64: move module info at the end X-Git-Tag: accepted/tizen/unified/20230118.172025~7732^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ee8c9a1c752f6181c1403fa5b4da620b410d9af;p=platform%2Fkernel%2Flinux-rpi.git 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 Reviewed-by: Lauri Kasanen Signed-off-by: Thomas Bogendoerfer --- diff --git a/drivers/block/n64cart.c b/drivers/block/n64cart.c index 8c7c924..6309003 100644 --- a/drivers/block/n64cart.c +++ b/drivers/block/n64cart.c @@ -13,10 +13,6 @@ #include #include -MODULE_AUTHOR("Lauri Kasanen "); -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 "); +MODULE_DESCRIPTION("Driver for the N64 cart"); +MODULE_LICENSE("GPL");