mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 1/9] mfd: as3711: Include linux/of.h header
@ 2013-10-16  8:56 Sachin Kamat
  2013-10-16  8:56 ` [PATCH 2/9] mfd: max77686: " Sachin Kamat
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/as3711.c b/drivers/mfd/as3711.c
index abd3ab7..ec684fc 100644
--- a/drivers/mfd/as3711.c
+++ b/drivers/mfd/as3711.c
@@ -17,6 +17,7 @@
 #include <linux/mfd/as3711.h>
 #include <linux/mfd/core.h>
 #include <linux/module.h>
+#include <linux/of.h>
 #include <linux/regmap.h>
 #include <linux/slab.h>
 
-- 
1.7.9.5


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

* [PATCH 2/9] mfd: max77686: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 3/9] mfd: max8907: " Sachin Kamat
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index 522be67..34520cb 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -31,6 +31,7 @@
 #include <linux/mfd/max77686.h>
 #include <linux/mfd/max77686-private.h>
 #include <linux/err.h>
+#include <linux/of.h>
 
 #define I2C_ADDR_RTC	(0x0C >> 1)
 
-- 
1.7.9.5


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

* [PATCH 3/9] mfd: max8907: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
  2013-10-16  8:56 ` [PATCH 2/9] mfd: max77686: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 4/9] mfd: max8997: " Sachin Kamat
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/max8907.c b/drivers/mfd/max8907.c
index e9b1c93..3bbfedc 100644
--- a/drivers/mfd/max8907.c
+++ b/drivers/mfd/max8907.c
@@ -17,6 +17,7 @@
 #include <linux/mfd/core.h>
 #include <linux/mfd/max8907.h>
 #include <linux/module.h>
+#include <linux/of.h>
 #include <linux/of_device.h>
 #include <linux/regmap.h>
 #include <linux/slab.h>
-- 
1.7.9.5


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

* [PATCH 4/9] mfd: max8997: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
  2013-10-16  8:56 ` [PATCH 2/9] mfd: max77686: " Sachin Kamat
  2013-10-16  8:56 ` [PATCH 3/9] mfd: max8907: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 5/9] mfd: sec-core: " Sachin Kamat
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/max8997.c b/drivers/mfd/max8997.c
index cee098c..791aea3 100644
--- a/drivers/mfd/max8997.c
+++ b/drivers/mfd/max8997.c
@@ -24,6 +24,7 @@
 #include <linux/err.h>
 #include <linux/slab.h>
 #include <linux/i2c.h>
+#include <linux/of.h>
 #include <linux/of_irq.h>
 #include <linux/interrupt.h>
 #include <linux/pm_runtime.h>
-- 
1.7.9.5


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

* [PATCH 5/9] mfd: sec-core: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (2 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 4/9] mfd: max8997: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 6/9] mfd: tps6507x: " Sachin Kamat
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo, Sangbeom Kim

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Sangbeom Kim <sbkim73@samsung.com>
---
 drivers/mfd/sec-core.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c
index f530e4b..34c18fb 100644
--- a/drivers/mfd/sec-core.c
+++ b/drivers/mfd/sec-core.c
@@ -17,6 +17,7 @@
 #include <linux/err.h>
 #include <linux/slab.h>
 #include <linux/i2c.h>
+#include <linux/of.h>
 #include <linux/of_irq.h>
 #include <linux/interrupt.h>
 #include <linux/pm_runtime.h>
-- 
1.7.9.5


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

* [PATCH 6/9] mfd: tps6507x: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (3 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 5/9] mfd: sec-core: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 7/9] mfd: tps6586x: " Sachin Kamat
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/tps6507x.c b/drivers/mfd/tps6507x.c
index 5ad4b77..a081b92 100644
--- a/drivers/mfd/tps6507x.c
+++ b/drivers/mfd/tps6507x.c
@@ -19,6 +19,7 @@
 #include <linux/init.h>
 #include <linux/slab.h>
 #include <linux/i2c.h>
+#include <linux/of.h>
 #include <linux/of_device.h>
 #include <linux/mfd/core.h>
 #include <linux/mfd/tps6507x.h>
-- 
1.7.9.5


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

* [PATCH 7/9] mfd: tps6586x: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (4 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 6/9] mfd: tps6507x: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 8/9] mfd: tps65910: " Sachin Kamat
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/tps6586x.c b/drivers/mfd/tps6586x.c
index 68906b1..ee61fd7 100644
--- a/drivers/mfd/tps6586x.c
+++ b/drivers/mfd/tps6586x.c
@@ -26,6 +26,7 @@
 #include <linux/i2c.h>
 #include <linux/platform_device.h>
 #include <linux/regmap.h>
+#include <linux/of.h>
 
 #include <linux/mfd/core.h>
 #include <linux/mfd/tps6586x.h>
-- 
1.7.9.5


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

* [PATCH 8/9] mfd: tps65910: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (5 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 7/9] mfd: tps6586x: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16  8:56 ` [PATCH 9/9] mfd: arizona: " Sachin Kamat
  2013-10-16 10:38 ` [PATCH 1/9] mfd: as3711: " Lee Jones
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

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

diff --git a/drivers/mfd/tps65910.c b/drivers/mfd/tps65910.c
index 78ffe6e..c0f608e 100644
--- a/drivers/mfd/tps65910.c
+++ b/drivers/mfd/tps65910.c
@@ -25,6 +25,7 @@
 #include <linux/mfd/core.h>
 #include <linux/regmap.h>
 #include <linux/mfd/tps65910.h>
+#include <linux/of.h>
 #include <linux/of_device.h>
 
 static struct resource rtc_resources[] = {
-- 
1.7.9.5


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

* [PATCH 9/9] mfd: arizona: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (6 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 8/9] mfd: tps65910: " Sachin Kamat
@ 2013-10-16  8:56 ` Sachin Kamat
  2013-10-16 10:38 ` [PATCH 1/9] mfd: as3711: " Lee Jones
  8 siblings, 0 replies; 10+ messages in thread
From: Sachin Kamat @ 2013-10-16  8:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: lee.jones, sachin.kamat, sameo

'of_match_ptr' is defined in linux/of.h. Include it explicitly to
avoid breakage in the future.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/mfd/arizona-i2c.c |    1 +
 drivers/mfd/arizona-spi.c |    1 +
 2 files changed, 2 insertions(+)

diff --git a/drivers/mfd/arizona-i2c.c b/drivers/mfd/arizona-i2c.c
index 51dbabf..beccb79 100644
--- a/drivers/mfd/arizona-i2c.c
+++ b/drivers/mfd/arizona-i2c.c
@@ -17,6 +17,7 @@
 #include <linux/regmap.h>
 #include <linux/regulator/consumer.h>
 #include <linux/slab.h>
+#include <linux/of.h>
 
 #include <linux/mfd/arizona/core.h>
 
diff --git a/drivers/mfd/arizona-spi.c b/drivers/mfd/arizona-spi.c
index 47be7b3..1ca554b 100644
--- a/drivers/mfd/arizona-spi.c
+++ b/drivers/mfd/arizona-spi.c
@@ -17,6 +17,7 @@
 #include <linux/regulator/consumer.h>
 #include <linux/slab.h>
 #include <linux/spi/spi.h>
+#include <linux/of.h>
 
 #include <linux/mfd/arizona/core.h>
 
-- 
1.7.9.5


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

* Re: [PATCH 1/9] mfd: as3711: Include linux/of.h header
  2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
                   ` (7 preceding siblings ...)
  2013-10-16  8:56 ` [PATCH 9/9] mfd: arizona: " Sachin Kamat
@ 2013-10-16 10:38 ` Lee Jones
  8 siblings, 0 replies; 10+ messages in thread
From: Lee Jones @ 2013-10-16 10:38 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-kernel, sameo

Patchset applied, thanks.

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2013-10-16 10:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-16  8:56 [PATCH 1/9] mfd: as3711: Include linux/of.h header Sachin Kamat
2013-10-16  8:56 ` [PATCH 2/9] mfd: max77686: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 3/9] mfd: max8907: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 4/9] mfd: max8997: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 5/9] mfd: sec-core: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 6/9] mfd: tps6507x: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 7/9] mfd: tps6586x: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 8/9] mfd: tps65910: " Sachin Kamat
2013-10-16  8:56 ` [PATCH 9/9] mfd: arizona: " Sachin Kamat
2013-10-16 10:38 ` [PATCH 1/9] mfd: as3711: " Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®