From: H Hartley Sweeten Date: Wed, 19 Dec 2012 22:40:59 +0000 (-0700) Subject: staging: comedi: comedi_fops: move the MODULE_* information to EOF X-Git-Tag: upstream/snapshot3+hdmi~5696^2~526 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a5787824c08f553a5f283fb754b2473a6ad19857;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git staging: comedi: comedi_fops: move the MODULE_* information to EOF For aesthetic reasons, move the MODULE_* information to the end of the file. Signed-off-by: H Hartley Sweeten Cc: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/comedi_fops.c b/drivers/staging/comedi/comedi_fops.c index 0e9b522..a066187 100644 --- a/drivers/staging/comedi/comedi_fops.c +++ b/drivers/staging/comedi/comedi_fops.c @@ -49,10 +49,6 @@ #include "comedi_internal.h" -MODULE_AUTHOR("http://www.comedi.org"); -MODULE_DESCRIPTION("Comedi core module"); -MODULE_LICENSE("GPL"); - #ifdef CONFIG_COMEDI_DEBUG int comedi_debug; EXPORT_SYMBOL(comedi_debug); @@ -2515,3 +2511,7 @@ void comedi_free_subdevice_minor(struct comedi_subdevice *s) } kfree(info); } + +MODULE_AUTHOR("http://www.comedi.org"); +MODULE_DESCRIPTION("Comedi core module"); +MODULE_LICENSE("GPL");