linux-pwm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] pwm: imx: Include linux/of.h header
@ 2013-09-27 11:23 Sachin Kamat
  2013-09-27 11:23 ` [PATCH 2/4] pwm: samsung: " Sachin Kamat
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:23 UTC (permalink / raw)
  To: linux-pwm; +Cc: thierry.reding, sachin.kamat

'of_match_ptr' is defined in linux/of.h. Include it explicitly.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/pwm/pwm-imx.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c
index 2b7c4f8..aa6e5c6 100644
--- a/drivers/pwm/pwm-imx.c
+++ b/drivers/pwm/pwm-imx.c
@@ -16,6 +16,7 @@
 #include <linux/clk.h>
 #include <linux/io.h>
 #include <linux/pwm.h>
+#include <linux/of.h>
 #include <linux/of_device.h>
 
 /* i.MX1 and i.MX21 share the same PWM function block: */
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/4] pwm: samsung: Include linux/of.h header
  2013-09-27 11:23 [PATCH 1/4] pwm: imx: Include linux/of.h header Sachin Kamat
@ 2013-09-27 11:23 ` Sachin Kamat
  2013-09-27 11:23 ` [PATCH 3/4] pwm: twl-led: " Sachin Kamat
  2013-09-27 11:23 ` [PATCH 4/4] pwm: twl: " Sachin Kamat
  2 siblings, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:23 UTC (permalink / raw)
  To: linux-pwm; +Cc: thierry.reding, sachin.kamat

'of_match_ptr' is defined in linux/of.h. Include it explicitly.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/pwm/pwm-samsung.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pwm/pwm-samsung.c b/drivers/pwm/pwm-samsung.c
index fcc8b9a..57eb8cb 100644
--- a/drivers/pwm/pwm-samsung.c
+++ b/drivers/pwm/pwm-samsung.c
@@ -18,6 +18,7 @@
 #include <linux/io.h>
 #include <linux/kernel.h>
 #include <linux/module.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] 4+ messages in thread

* [PATCH 3/4] pwm: twl-led: Include linux/of.h header
  2013-09-27 11:23 [PATCH 1/4] pwm: imx: Include linux/of.h header Sachin Kamat
  2013-09-27 11:23 ` [PATCH 2/4] pwm: samsung: " Sachin Kamat
@ 2013-09-27 11:23 ` Sachin Kamat
  2013-09-27 11:23 ` [PATCH 4/4] pwm: twl: " Sachin Kamat
  2 siblings, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:23 UTC (permalink / raw)
  To: linux-pwm; +Cc: thierry.reding, sachin.kamat

'of_match_ptr' is defined in linux/of.h. Include it explicitly.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/pwm/pwm-twl-led.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pwm/pwm-twl-led.c b/drivers/pwm/pwm-twl-led.c
index 29d1bba..b964470 100644
--- a/drivers/pwm/pwm-twl-led.c
+++ b/drivers/pwm/pwm-twl-led.c
@@ -21,6 +21,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pwm.h>
 #include <linux/i2c/twl.h>
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 4/4] pwm: twl: Include linux/of.h header
  2013-09-27 11:23 [PATCH 1/4] pwm: imx: Include linux/of.h header Sachin Kamat
  2013-09-27 11:23 ` [PATCH 2/4] pwm: samsung: " Sachin Kamat
  2013-09-27 11:23 ` [PATCH 3/4] pwm: twl-led: " Sachin Kamat
@ 2013-09-27 11:23 ` Sachin Kamat
  2 siblings, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-09-27 11:23 UTC (permalink / raw)
  To: linux-pwm; +Cc: thierry.reding, sachin.kamat

'of_match_ptr' is defined in linux/of.h. Include it explicitly.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/pwm/pwm-twl.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pwm/pwm-twl.c b/drivers/pwm/pwm-twl.c
index eef9105..b99a50e 100644
--- a/drivers/pwm/pwm-twl.c
+++ b/drivers/pwm/pwm-twl.c
@@ -18,6 +18,7 @@
  */
 
 #include <linux/module.h>
+#include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pwm.h>
 #include <linux/i2c/twl.h>
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-27 11:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-27 11:23 [PATCH 1/4] pwm: imx: Include linux/of.h header Sachin Kamat
2013-09-27 11:23 ` [PATCH 2/4] pwm: samsung: " Sachin Kamat
2013-09-27 11:23 ` [PATCH 3/4] pwm: twl-led: " Sachin Kamat
2013-09-27 11:23 ` [PATCH 4/4] pwm: twl: " 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).