diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2005-12-10 22:48:20 +1100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-04 16:18:09 -0800 |
commit | e39b84337b8aed3044683a57741a19e5002225b9 (patch) | |
tree | b0e6fdd68b9b7d24b984401795f4660cc9cf7d0b /include | |
parent | 1d8f430c15b3a345db990e285742c67c2f52f9a6 (diff) | |
download | linux-3.10-e39b84337b8aed3044683a57741a19e5002225b9.tar.gz linux-3.10-e39b84337b8aed3044683a57741a19e5002225b9.tar.bz2 linux-3.10-e39b84337b8aed3044683a57741a19e5002225b9.zip |
[PATCH] Input: fix add modalias support build error
Fix build when scripts/mod/file2alias.c includes linux/input.h, which
tries to include /usr/include/linux/mod_devicetable.h:
In file included from scripts/mod/file2alias.c:40:
include/linux/input.h:21:35: linux/mod_devicetable.h: No such file or directory
make[2]: *** [scripts/mod/file2alias.o] Error 1
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/input.h b/include/linux/input.h index bef08551a33..6d4cc3c110d 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -13,12 +13,12 @@ #include <linux/time.h> #include <linux/list.h> #include <linux/device.h> +#include <linux/mod_devicetable.h> #else #include <sys/time.h> #include <sys/ioctl.h> #include <asm/types.h> #endif -#include <linux/mod_devicetable.h> /* * The event structure itself |