Commit e080ca2d authored by Dave Jones's avatar Dave Jones

[PATCH] module fixes for qtronix.c

parent 06fb3199
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
#ifdef CONFIG_QTRONIX_KEYBOARD #ifdef CONFIG_QTRONIX_KEYBOARD
#include <linux/module.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -121,7 +122,7 @@ static unsigned char fn_keys[NUM_FN_KEYS] = { ...@@ -121,7 +122,7 @@ static unsigned char fn_keys[NUM_FN_KEYS] = {
}; };
void init_qtronix_990P_kbd(void) void __init init_qtronix_990P_kbd(void)
{ {
int retval; int retval;
...@@ -592,4 +593,5 @@ static int __init psaux_init(void) ...@@ -592,4 +593,5 @@ static int __init psaux_init(void)
return 0; return 0;
} }
module_init(init_qtronix_990P_kbd);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment