diff options
| author | Alan Cox <[email protected]> | 2009-01-07 11:40:03 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2009-01-07 19:34:14 +0000 |
| commit | 30aafdba6f78619274a977d67283a681bedbcbbd (patch) | |
| tree | 16f3c52ffacdb7199020c6c99748a25fc1051da0 | |
| parent | Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jik... (diff) | |
| download | kernel-30aafdba6f78619274a977d67283a681bedbcbbd.tar.gz kernel-30aafdba6f78619274a977d67283a681bedbcbbd.zip | |
touchscreen: Fix build of da9034
Missing an include and thus breaks the x86-64 build.
Signed-off-by: Alan Cox <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | drivers/input/touchscreen/da9034-ts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/touchscreen/da9034-ts.c b/drivers/input/touchscreen/da9034-ts.c index 4342e77814b5..fa67d782c3c3 100644 --- a/drivers/input/touchscreen/da9034-ts.c +++ b/drivers/input/touchscreen/da9034-ts.c @@ -16,6 +16,7 @@ #include <linux/delay.h> #include <linux/platform_device.h> #include <linux/input.h> +#include <linux/workqueue.h> #include <linux/mfd/da903x.h> #define DA9034_MANUAL_CTRL 0x50 |
