* [PATCH 1/7] Input: gpio_keys - Include linux/of.h header
@ 2013-09-27 11:52 Sachin Kamat
2013-09-27 11:52 ` [PATCH 2/7] Input: gpio_keys_polled " Sachin Kamat
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/keyboard/gpio_keys.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c
index 440ce32..2db1324 100644
--- a/drivers/input/keyboard/gpio_keys.c
+++ b/drivers/input/keyboard/gpio_keys.c
@@ -26,6 +26,7 @@
#include <linux/gpio_keys.h>
#include <linux/workqueue.h>
#include <linux/gpio.h>
+#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/of_gpio.h>
#include <linux/spinlock.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/7] Input: gpio_keys_polled - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 3/7] Input: pxa27x_keypad " Sachin Kamat
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/keyboard/gpio_keys_polled.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/keyboard/gpio_keys_polled.c b/drivers/input/keyboard/gpio_keys_polled.c
index cd5ed9e..4e42819 100644
--- a/drivers/input/keyboard/gpio_keys_polled.c
+++ b/drivers/input/keyboard/gpio_keys_polled.c
@@ -25,6 +25,7 @@
#include <linux/platform_device.h>
#include <linux/gpio.h>
#include <linux/gpio_keys.h>
+#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/of_gpio.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/7] Input: pxa27x_keypad - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
2013-09-27 11:52 ` [PATCH 2/7] Input: gpio_keys_polled " Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 4/7] Input: pwm-beeper " Sachin Kamat
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/keyboard/pxa27x_keypad.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/keyboard/pxa27x_keypad.c b/drivers/input/keyboard/pxa27x_keypad.c
index a2e758d..186138c 100644
--- a/drivers/input/keyboard/pxa27x_keypad.c
+++ b/drivers/input/keyboard/pxa27x_keypad.c
@@ -27,6 +27,7 @@
#include <linux/err.h>
#include <linux/input/matrix_keypad.h>
#include <linux/slab.h>
+#include <linux/of.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 4/7] Input: pwm-beeper - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
2013-09-27 11:52 ` [PATCH 2/7] Input: gpio_keys_polled " Sachin Kamat
2013-09-27 11:52 ` [PATCH 3/7] Input: pxa27x_keypad " Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 5/7] Input: rotary_encoder " Sachin Kamat
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/misc/pwm-beeper.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/misc/pwm-beeper.c b/drivers/input/misc/pwm-beeper.c
index 2ff4d1c..940566e 100644
--- a/drivers/input/misc/pwm-beeper.c
+++ b/drivers/input/misc/pwm-beeper.c
@@ -16,6 +16,7 @@
#include <linux/input.h>
#include <linux/module.h>
#include <linux/kernel.h>
+#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/pwm.h>
#include <linux/slab.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 5/7] Input: rotary_encoder - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
` (2 preceding siblings ...)
2013-09-27 11:52 ` [PATCH 4/7] Input: pwm-beeper " Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 6/7] Input: egalax_ts " Sachin Kamat
2013-09-27 11:52 ` [PATCH 7/7] Input: st1232 " Sachin Kamat
5 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/misc/rotary_encoder.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
index 5b1aff8..f920ba7 100644
--- a/drivers/input/misc/rotary_encoder.c
+++ b/drivers/input/misc/rotary_encoder.c
@@ -24,6 +24,7 @@
#include <linux/gpio.h>
#include <linux/rotary_encoder.h>
#include <linux/slab.h>
+#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/of_gpio.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 6/7] Input: egalax_ts - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
` (3 preceding siblings ...)
2013-09-27 11:52 ` [PATCH 5/7] Input: rotary_encoder " Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
2013-09-28 12:17 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 7/7] Input: st1232 " Sachin Kamat
5 siblings, 1 reply; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/touchscreen/egalax_ts.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/touchscreen/egalax_ts.c b/drivers/input/touchscreen/egalax_ts.c
index ef5fcb0..c856fbc 100644
--- a/drivers/input/touchscreen/egalax_ts.c
+++ b/drivers/input/touchscreen/egalax_ts.c
@@ -28,6 +28,7 @@
#include <linux/slab.h>
#include <linux/bitops.h>
#include <linux/input/mt.h>
+#include <linux/of.h>
#include <linux/of_gpio.h>
/*
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 7/7] Input: st1232 - Include linux/of.h header
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
` (4 preceding siblings ...)
2013-09-27 11:52 ` [PATCH 6/7] Input: egalax_ts " Sachin Kamat
@ 2013-09-27 11:52 ` Sachin Kamat
5 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:52 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, sachin.kamat
'of_match_ptr' is defined in linux/of.h. Include it explicitly.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
drivers/input/touchscreen/st1232.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/touchscreen/st1232.c b/drivers/input/touchscreen/st1232.c
index 1740a24..2f03b2f 100644
--- a/drivers/input/touchscreen/st1232.c
+++ b/drivers/input/touchscreen/st1232.c
@@ -24,6 +24,7 @@
#include <linux/input.h>
#include <linux/interrupt.h>
#include <linux/module.h>
+#include <linux/of.h>
#include <linux/of_gpio.h>
#include <linux/pm_qos.h>
#include <linux/slab.h>
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 6/7] Input: egalax_ts - Include linux/of.h header
2013-09-27 11:52 ` [PATCH 6/7] Input: egalax_ts " Sachin Kamat
@ 2013-09-28 12:17 ` Sachin Kamat
0 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2013-09-28 12:17 UTC (permalink / raw)
To: linux-input@vger.kernel.org; +Cc: Dmitry Torokhov, Sachin Kamat
Hi Dmitry,
On 27 September 2013 17:22, Sachin Kamat <sachin.kamat@linaro.org> wrote:
> 'of_match_ptr' is defined in linux/of.h. Include it explicitly.
>
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
> ---
Please drop this patch. I will send a different one for this.
--
With warm regards,
Sachin
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-09-28 12:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-27 11:52 [PATCH 1/7] Input: gpio_keys - Include linux/of.h header Sachin Kamat
2013-09-27 11:52 ` [PATCH 2/7] Input: gpio_keys_polled " Sachin Kamat
2013-09-27 11:52 ` [PATCH 3/7] Input: pxa27x_keypad " Sachin Kamat
2013-09-27 11:52 ` [PATCH 4/7] Input: pwm-beeper " Sachin Kamat
2013-09-27 11:52 ` [PATCH 5/7] Input: rotary_encoder " Sachin Kamat
2013-09-27 11:52 ` [PATCH 6/7] Input: egalax_ts " Sachin Kamat
2013-09-28 12:17 ` Sachin Kamat
2013-09-27 11:52 ` [PATCH 7/7] Input: st1232 " Sachin Kamat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).