staging: comedi: ni_tiocmd: move the MODULE_* stuff to the end of file
For aesthetics, move all the MODULE_* information to the end of the file. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
fca7c1d753
commit
cafa814958
1 changed files with 4 additions and 6 deletions
|
@ -49,10 +49,6 @@ TODO:
|
||||||
#include "ni_tio_internal.h"
|
#include "ni_tio_internal.h"
|
||||||
#include "mite.h"
|
#include "mite.h"
|
||||||
|
|
||||||
MODULE_AUTHOR("Comedi <comedi@comedi.org>");
|
|
||||||
MODULE_DESCRIPTION("Comedi command support for NI general-purpose counters");
|
|
||||||
MODULE_LICENSE("GPL");
|
|
||||||
|
|
||||||
static void ni_tio_configure_dma(struct ni_gpct *counter, short enable,
|
static void ni_tio_configure_dma(struct ni_gpct *counter, short enable,
|
||||||
short read_not_write)
|
short read_not_write)
|
||||||
{
|
{
|
||||||
|
@ -469,11 +465,13 @@ static int __init ni_tiocmd_init_module(void)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
module_init(ni_tiocmd_init_module);
|
module_init(ni_tiocmd_init_module);
|
||||||
|
|
||||||
static void __exit ni_tiocmd_cleanup_module(void)
|
static void __exit ni_tiocmd_cleanup_module(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
module_exit(ni_tiocmd_cleanup_module);
|
module_exit(ni_tiocmd_cleanup_module);
|
||||||
|
|
||||||
|
MODULE_AUTHOR("Comedi <comedi@comedi.org>");
|
||||||
|
MODULE_DESCRIPTION("Comedi command support for NI general-purpose counters");
|
||||||
|
MODULE_LICENSE("GPL");
|
||||||
|
|
Loading…
Add table
Reference in a new issue