diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-06 22:44:47 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-06 22:44:47 -0500 |
| commit | 32aaeffbd4a7457bf2f7448b33b5946ff2a960eb (patch) | |
| tree | faf7ad871d87176423ff9ed1d1ba4d9c688fc23f /drivers/input | |
| parent | 208bca0860406d16398145ddd950036a737c3c9d (diff) | |
| parent | 67b84999b1a8b1af5625b1eabe92146c5eb42932 (diff) | |
Merge branch 'modsplit-Oct31_2011' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux
* 'modsplit-Oct31_2011' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux: (230 commits)
Revert "tracing: Include module.h in define_trace.h"
irq: don't put module.h into irq.h for tracking irqgen modules.
bluetooth: macroize two small inlines to avoid module.h
ip_vs.h: fix implicit use of module_get/module_put from module.h
nf_conntrack.h: fix up fallout from implicit moduleparam.h presence
include: replace linux/module.h with "struct module" wherever possible
include: convert various register fcns to macros to avoid include chaining
crypto.h: remove unused crypto_tfm_alg_modname() inline
uwb.h: fix implicit use of asm/page.h for PAGE_SIZE
pm_runtime.h: explicitly requires notifier.h
linux/dmaengine.h: fix implicit use of bitmap.h and asm/page.h
miscdevice.h: fix up implicit use of lists and types
stop_machine.h: fix implicit use of smp.h for smp_processor_id
of: fix implicit use of errno.h in include/linux/of.h
of_platform.h: delete needless include <linux/module.h>
acpi: remove module.h include from platform/aclinux.h
miscdevice.h: delete unnecessary inclusion of module.h
device_cgroup.h: delete needless include <linux/module.h>
net: sch_generic remove redundant use of <linux/module.h>
net: inet_timewait_sock doesnt need <linux/module.h>
...
Fix up trivial conflicts (other header files, and removal of the ab3550 mfd driver) in
- drivers/media/dvb/frontends/dibx000_common.c
- drivers/media/video/{mt9m111.c,ov6650.c}
- drivers/mfd/ab3550-core.c
- include/linux/dmaengine.h
Diffstat (limited to 'drivers/input')
| -rw-r--r-- | drivers/input/input-compat.c | 1 | ||||
| -rw-r--r-- | drivers/input/input-mt.c | 1 | ||||
| -rw-r--r-- | drivers/input/input-polldev.c | 1 | ||||
| -rw-r--r-- | drivers/input/joystick/as5011.c | 1 | ||||
| -rw-r--r-- | drivers/input/keyboard/nomadik-ske-keypad.c | 1 | ||||
| -rw-r--r-- | drivers/input/keyboard/tnetv107x-keypad.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/ad714x.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/adxl34x.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/ati_remote2.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/cma3000_d0x.c | 1 | ||||
| -rw-r--r-- | drivers/input/misc/dm355evm_keys.c | 1 | ||||
| -rw-r--r-- | drivers/input/sparse-keymap.c | 1 | ||||
| -rw-r--r-- | drivers/input/touchscreen/ad7877.c | 1 | ||||
| -rw-r--r-- | drivers/input/touchscreen/ad7879-spi.c | 1 | ||||
| -rw-r--r-- | drivers/input/touchscreen/ad7879.c | 1 | ||||
| -rw-r--r-- | drivers/input/touchscreen/ads7846.c | 1 | ||||
| -rw-r--r-- | drivers/input/touchscreen/bu21013_ts.c | 1 |
17 files changed, 17 insertions, 0 deletions
diff --git a/drivers/input/input-compat.c b/drivers/input/input-compat.c index 1accb89ae66f..e46a86776a6b 100644 --- a/drivers/input/input-compat.c +++ b/drivers/input/input-compat.c | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | * the Free Software Foundation. | 8 | * the Free Software Foundation. |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include <linux/export.h> | ||
| 11 | #include <asm/uaccess.h> | 12 | #include <asm/uaccess.h> |
| 12 | #include "input-compat.h" | 13 | #include "input-compat.h" |
| 13 | 14 | ||
diff --git a/drivers/input/input-mt.c b/drivers/input/input-mt.c index 9150ee78e00a..f658086fbbe0 100644 --- a/drivers/input/input-mt.c +++ b/drivers/input/input-mt.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include <linux/input/mt.h> | 11 | #include <linux/input/mt.h> |
| 12 | #include <linux/export.h> | ||
| 12 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
| 13 | 14 | ||
| 14 | #define TRKID_SGN ((TRKID_MAX + 1) >> 1) | 15 | #define TRKID_SGN ((TRKID_MAX + 1) >> 1) |
diff --git a/drivers/input/input-polldev.c b/drivers/input/input-polldev.c index b253973881b8..7dfe1009fae0 100644 --- a/drivers/input/input-polldev.c +++ b/drivers/input/input-polldev.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/slab.h> | 14 | #include <linux/slab.h> |
| 15 | #include <linux/mutex.h> | 15 | #include <linux/mutex.h> |
| 16 | #include <linux/workqueue.h> | 16 | #include <linux/workqueue.h> |
| 17 | #include <linux/module.h> | ||
| 17 | #include <linux/input-polldev.h> | 18 | #include <linux/input-polldev.h> |
| 18 | 19 | ||
| 19 | MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>"); | 20 | MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>"); |
diff --git a/drivers/input/joystick/as5011.c b/drivers/input/joystick/as5011.c index f6732b57ca07..6d6e7418dc21 100644 --- a/drivers/input/joystick/as5011.c +++ b/drivers/input/joystick/as5011.c | |||
| @@ -30,6 +30,7 @@ | |||
| 30 | #include <linux/delay.h> | 30 | #include <linux/delay.h> |
| 31 | #include <linux/input/as5011.h> | 31 | #include <linux/input/as5011.h> |
| 32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
| 33 | #include <linux/module.h> | ||
| 33 | 34 | ||
| 34 | #define DRIVER_DESC "Driver for Austria Microsystems AS5011 joystick" | 35 | #define DRIVER_DESC "Driver for Austria Microsystems AS5011 joystick" |
| 35 | #define MODULE_DEVICE_ALIAS "as5011" | 36 | #define MODULE_DEVICE_ALIAS "as5011" |
diff --git a/drivers/input/keyboard/nomadik-ske-keypad.c b/drivers/input/keyboard/nomadik-ske-keypad.c index 6e0f23091360..fcdec5e2b297 100644 --- a/drivers/input/keyboard/nomadik-ske-keypad.c +++ b/drivers/input/keyboard/nomadik-ske-keypad.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/input.h> | 18 | #include <linux/input.h> |
| 19 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| 20 | #include <linux/clk.h> | 20 | #include <linux/clk.h> |
| 21 | #include <linux/module.h> | ||
| 21 | 22 | ||
| 22 | #include <plat/ske.h> | 23 | #include <plat/ske.h> |
| 23 | 24 | ||
diff --git a/drivers/input/keyboard/tnetv107x-keypad.c b/drivers/input/keyboard/tnetv107x-keypad.c index 1c58681de81f..66e55e5cfdd6 100644 --- a/drivers/input/keyboard/tnetv107x-keypad.c +++ b/drivers/input/keyboard/tnetv107x-keypad.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
| 25 | #include <linux/clk.h> | 25 | #include <linux/clk.h> |
| 26 | #include <linux/input/matrix_keypad.h> | 26 | #include <linux/input/matrix_keypad.h> |
| 27 | #include <linux/module.h> | ||
| 27 | 28 | ||
| 28 | #define BITS(x) (BIT(x) - 1) | 29 | #define BITS(x) (BIT(x) - 1) |
| 29 | 30 | ||
diff --git a/drivers/input/misc/ad714x.c b/drivers/input/misc/ad714x.c index ca42c7d2a3c7..0ac75bbad4d6 100644 --- a/drivers/input/misc/ad714x.c +++ b/drivers/input/misc/ad714x.c | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/interrupt.h> | 12 | #include <linux/interrupt.h> |
| 13 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
| 14 | #include <linux/input/ad714x.h> | 14 | #include <linux/input/ad714x.h> |
| 15 | #include <linux/module.h> | ||
| 15 | #include "ad714x.h" | 16 | #include "ad714x.h" |
| 16 | 17 | ||
| 17 | #define AD714X_PWR_CTRL 0x0 | 18 | #define AD714X_PWR_CTRL 0x0 |
diff --git a/drivers/input/misc/adxl34x.c b/drivers/input/misc/adxl34x.c index 144ddbdeb9b3..09244804fb97 100644 --- a/drivers/input/misc/adxl34x.c +++ b/drivers/input/misc/adxl34x.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
| 17 | #include <linux/workqueue.h> | 17 | #include <linux/workqueue.h> |
| 18 | #include <linux/input/adxl34x.h> | 18 | #include <linux/input/adxl34x.h> |
| 19 | #include <linux/module.h> | ||
| 19 | 20 | ||
| 20 | #include "adxl34x.h" | 21 | #include "adxl34x.h" |
| 21 | 22 | ||
diff --git a/drivers/input/misc/ati_remote2.c b/drivers/input/misc/ati_remote2.c index 1de58e8a1b71..8d345e87075e 100644 --- a/drivers/input/misc/ati_remote2.c +++ b/drivers/input/misc/ati_remote2.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | 11 | ||
| 12 | #include <linux/usb/input.h> | 12 | #include <linux/usb/input.h> |
| 13 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
| 14 | #include <linux/module.h> | ||
| 14 | 15 | ||
| 15 | #define DRIVER_DESC "ATI/Philips USB RF remote driver" | 16 | #define DRIVER_DESC "ATI/Philips USB RF remote driver" |
| 16 | #define DRIVER_VERSION "0.3" | 17 | #define DRIVER_VERSION "0.3" |
diff --git a/drivers/input/misc/cma3000_d0x.c b/drivers/input/misc/cma3000_d0x.c index 1633b6342267..80793f1608eb 100644 --- a/drivers/input/misc/cma3000_d0x.c +++ b/drivers/input/misc/cma3000_d0x.c | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include <linux/slab.h> | 23 | #include <linux/slab.h> |
| 24 | #include <linux/input.h> | 24 | #include <linux/input.h> |
| 25 | #include <linux/input/cma3000.h> | 25 | #include <linux/input/cma3000.h> |
| 26 | #include <linux/module.h> | ||
| 26 | 27 | ||
| 27 | #include "cma3000_d0x.h" | 28 | #include "cma3000_d0x.h" |
| 28 | 29 | ||
diff --git a/drivers/input/misc/dm355evm_keys.c b/drivers/input/misc/dm355evm_keys.c index 19af682c24fb..7283dd2a1ad3 100644 --- a/drivers/input/misc/dm355evm_keys.c +++ b/drivers/input/misc/dm355evm_keys.c | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/interrupt.h> | 17 | #include <linux/interrupt.h> |
| 18 | 18 | ||
| 19 | #include <linux/i2c/dm355evm_msp.h> | 19 | #include <linux/i2c/dm355evm_msp.h> |
| 20 | #include <linux/module.h> | ||
| 20 | 21 | ||
| 21 | 22 | ||
| 22 | /* | 23 | /* |
diff --git a/drivers/input/sparse-keymap.c b/drivers/input/sparse-keymap.c index fdb6a3976f94..75fb040a3435 100644 --- a/drivers/input/sparse-keymap.c +++ b/drivers/input/sparse-keymap.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | #include <linux/input.h> | 16 | #include <linux/input.h> |
| 17 | #include <linux/input/sparse-keymap.h> | 17 | #include <linux/input/sparse-keymap.h> |
| 18 | #include <linux/module.h> | ||
| 18 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| 19 | 20 | ||
| 20 | MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>"); | 21 | MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>"); |
diff --git a/drivers/input/touchscreen/ad7877.c b/drivers/input/touchscreen/ad7877.c index 714d4e0f9f95..400131df677b 100644 --- a/drivers/input/touchscreen/ad7877.c +++ b/drivers/input/touchscreen/ad7877.c | |||
| @@ -45,6 +45,7 @@ | |||
| 45 | #include <linux/slab.h> | 45 | #include <linux/slab.h> |
| 46 | #include <linux/spi/spi.h> | 46 | #include <linux/spi/spi.h> |
| 47 | #include <linux/spi/ad7877.h> | 47 | #include <linux/spi/ad7877.h> |
| 48 | #include <linux/module.h> | ||
| 48 | #include <asm/irq.h> | 49 | #include <asm/irq.h> |
| 49 | 50 | ||
| 50 | #define TS_PEN_UP_TIMEOUT msecs_to_jiffies(100) | 51 | #define TS_PEN_UP_TIMEOUT msecs_to_jiffies(100) |
diff --git a/drivers/input/touchscreen/ad7879-spi.c b/drivers/input/touchscreen/ad7879-spi.c index ddf732f3cafc..b1643c8fa7c9 100644 --- a/drivers/input/touchscreen/ad7879-spi.c +++ b/drivers/input/touchscreen/ad7879-spi.c | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <linux/input.h> /* BUS_SPI */ | 9 | #include <linux/input.h> /* BUS_SPI */ |
| 10 | #include <linux/pm.h> | 10 | #include <linux/pm.h> |
| 11 | #include <linux/spi/spi.h> | 11 | #include <linux/spi/spi.h> |
| 12 | #include <linux/module.h> | ||
| 12 | 13 | ||
| 13 | #include "ad7879.h" | 14 | #include "ad7879.h" |
| 14 | 15 | ||
diff --git a/drivers/input/touchscreen/ad7879.c b/drivers/input/touchscreen/ad7879.c index 131f9d1c921b..3b2e9ed2aeec 100644 --- a/drivers/input/touchscreen/ad7879.c +++ b/drivers/input/touchscreen/ad7879.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/gpio.h> | 33 | #include <linux/gpio.h> |
| 34 | 34 | ||
| 35 | #include <linux/spi/ad7879.h> | 35 | #include <linux/spi/ad7879.h> |
| 36 | #include <linux/module.h> | ||
| 36 | #include "ad7879.h" | 37 | #include "ad7879.h" |
| 37 | 38 | ||
| 38 | #define AD7879_REG_ZEROS 0 | 39 | #define AD7879_REG_ZEROS 0 |
diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index d507b9b67806..de31ec6fe9e4 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/spi/spi.h> | 31 | #include <linux/spi/spi.h> |
| 32 | #include <linux/spi/ads7846.h> | 32 | #include <linux/spi/ads7846.h> |
| 33 | #include <linux/regulator/consumer.h> | 33 | #include <linux/regulator/consumer.h> |
| 34 | #include <linux/module.h> | ||
| 34 | #include <asm/irq.h> | 35 | #include <asm/irq.h> |
| 35 | 36 | ||
| 36 | /* | 37 | /* |
diff --git a/drivers/input/touchscreen/bu21013_ts.c b/drivers/input/touchscreen/bu21013_ts.c index 1507ce108d5b..902c7214e887 100644 --- a/drivers/input/touchscreen/bu21013_ts.c +++ b/drivers/input/touchscreen/bu21013_ts.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/input/bu21013.h> | 13 | #include <linux/input/bu21013.h> |
| 14 | #include <linux/slab.h> | 14 | #include <linux/slab.h> |
| 15 | #include <linux/regulator/consumer.h> | 15 | #include <linux/regulator/consumer.h> |
| 16 | #include <linux/module.h> | ||
| 16 | 17 | ||
| 17 | #define PEN_DOWN_INTR 0 | 18 | #define PEN_DOWN_INTR 0 |
| 18 | #define MAX_FINGERS 2 | 19 | #define MAX_FINGERS 2 |
