projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8072714
)
staging: comedi: das08_cs: move the MODULE_* stuff to the EOF
author
H Hartley Sweeten
<
[email protected]
>
Mon, 2 Jul 2012 22:42:41 +0000
(15:42 -0700)
committer
Greg Kroah-Hartman
<
[email protected]
>
Fri, 6 Jul 2012 22:51:17 +0000
(15:51 -0700)
Move the MODULE_* declarations to the end of the file.
Signed-off-by: H Hartley Sweeten <
[email protected]
>
Cc: Ian Abbott <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/comedi/drivers/das08_cs.c
patch
|
blob
|
history
diff --git
a/drivers/staging/comedi/drivers/das08_cs.c
b/drivers/staging/comedi/drivers/das08_cs.c
index 8bf6ec2dddba2d5f62d47ee5c8acbcdd0adba25b..f62e5f81862ad3e7336598fedb92ef14e87b590d 100644
(file)
--- a/
drivers/staging/comedi/drivers/das08_cs.c
+++ b/
drivers/staging/comedi/drivers/das08_cs.c
@@
-224,10
+224,6
@@
static const struct pcmcia_device_id das08_cs_id_table[] = {
};
MODULE_DEVICE_TABLE(pcmcia, das08_cs_id_table);
-MODULE_AUTHOR("David A. Schleef <
[email protected]
>, "
- "Frank Mori Hess <
[email protected]
>");
-MODULE_DESCRIPTION("Comedi driver for ComputerBoards DAS-08 PCMCIA boards");
-MODULE_LICENSE("GPL");
struct pcmcia_driver das08_cs_driver = {
.probe = das08_pcmcia_attach,
@@
-270,3
+266,8
@@
static void __exit das08_cs_exit_module(void)
module_init(das08_cs_init_module);
module_exit(das08_cs_exit_module);
+
+MODULE_AUTHOR("David A. Schleef <
[email protected]
>, "
+ "Frank Mori Hess <
[email protected]
>");
+MODULE_DESCRIPTION("Comedi driver for ComputerBoards DAS-08 PCMCIA boards");
+MODULE_LICENSE("GPL");