diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2011-07-30 11:53:47 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-07-30 12:03:26 -0700 |
commit | ab3d0abe2e4c1f164af7a6cc3694fcb8c24a57ee (patch) | |
tree | df9e009b45751cc3a7f5f321daecc816012da498 /drivers/input | |
parent | aa7eb8e78d8ecd6cd0475d86ea8385ff9cb47ece (diff) | |
download | blackbird-obmc-linux-ab3d0abe2e4c1f164af7a6cc3694fcb8c24a57ee.tar.gz blackbird-obmc-linux-ab3d0abe2e4c1f164af7a6cc3694fcb8c24a57ee.zip |
Input: psmouse - hgpk.c needs module.h
hgpk.c uses interfaces from linux/module.h, so it should include that file.
This fixes build errors.
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/mouse/hgpk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/mouse/hgpk.c b/drivers/input/mouse/hgpk.c index 95577c15ae56..4d17d9f3320b 100644 --- a/drivers/input/mouse/hgpk.c +++ b/drivers/input/mouse/hgpk.c @@ -32,6 +32,7 @@ #define DEBUG #include <linux/slab.h> #include <linux/input.h> +#include <linux/module.h> #include <linux/serio.h> #include <linux/libps2.h> #include <linux/delay.h> |