* [rtc-linux] [PATCH 2/5] rtc: ds1286: move header to linux/rtc
2016-06-26 22:02 [rtc-linux] [PATCH 1/5] rtc: ds17287: remove unused header Alexandre Belloni
@ 2016-06-26 22:03 ` Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 3/5] rtc: ds2404: move rtc-ds2404.h to platform_data Alexandre Belloni
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Alexandre Belloni @ 2016-06-26 22:03 UTC (permalink / raw)
To: rtc-linux
Cc: Alessandro Zummo, linux-kernel, Alexandre Belloni, Ralf Baechle,
linux-mips
Move ds1286.h to rtc specific folder.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
arch/mips/sgi-ip22/ip22-reset.c | 2 +-
drivers/rtc/rtc-ds1286.c | 2 +-
include/linux/{ => rtc}/ds1286.h | 0
3 files changed, 2 insertions(+), 2 deletions(-)
rename include/linux/{ => rtc}/ds1286.h (100%)
diff --git a/arch/mips/sgi-ip22/ip22-reset.c b/arch/mips/sgi-ip22/ip22-reset.c
index 063c2dd31e72..2f45b0357021 100644
--- a/arch/mips/sgi-ip22/ip22-reset.c
+++ b/arch/mips/sgi-ip22/ip22-reset.c
@@ -7,7 +7,7 @@
*/
#include <linux/linkage.h>
#include <linux/init.h>
-#include <linux/ds1286.h>
+#include <linux/rtc/ds1286.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
diff --git a/drivers/rtc/rtc-ds1286.c b/drivers/rtc/rtc-ds1286.c
index 756e509f6ed2..ef75c349dff9 100644
--- a/drivers/rtc/rtc-ds1286.c
+++ b/drivers/rtc/rtc-ds1286.c
@@ -16,7 +16,7 @@
#include <linux/rtc.h>
#include <linux/platform_device.h>
#include <linux/bcd.h>
-#include <linux/ds1286.h>
+#include <linux/rtc/ds1286.h>
#include <linux/io.h>
#include <linux/slab.h>
diff --git a/include/linux/ds1286.h b/include/linux/rtc/ds1286.h
similarity index 100%
rename from include/linux/ds1286.h
rename to include/linux/rtc/ds1286.h
--
2.8.1
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rtc-linux] [PATCH 3/5] rtc: ds2404: move rtc-ds2404.h to platform_data
2016-06-26 22:02 [rtc-linux] [PATCH 1/5] rtc: ds17287: remove unused header Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 2/5] rtc: ds1286: move header to linux/rtc Alexandre Belloni
@ 2016-06-26 22:03 ` Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h " Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 5/5] rtc: v3020: move rtc-v3020.h " Alexandre Belloni
3 siblings, 0 replies; 10+ messages in thread
From: Alexandre Belloni @ 2016-06-26 22:03 UTC (permalink / raw)
To: rtc-linux; +Cc: Alessandro Zummo, linux-kernel, Alexandre Belloni
rtc-ds2404.h belongs to include/linux/platform_data/
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
drivers/rtc/rtc-ds2404.c | 2 +-
include/linux/{ => platform_data}/rtc-ds2404.h | 0
2 files changed, 1 insertion(+), 1 deletion(-)
rename include/linux/{ => platform_data}/rtc-ds2404.h (100%)
diff --git a/drivers/rtc/rtc-ds2404.c b/drivers/rtc/rtc-ds2404.c
index 16310fe79d76..9a1582ed7070 100644
--- a/drivers/rtc/rtc-ds2404.c
+++ b/drivers/rtc/rtc-ds2404.c
@@ -13,7 +13,7 @@
#include <linux/rtc.h>
#include <linux/types.h>
#include <linux/bcd.h>
-#include <linux/rtc-ds2404.h>
+#include <linux/platform_data/rtc-ds2404.h>
#include <linux/delay.h>
#include <linux/gpio.h>
#include <linux/slab.h>
diff --git a/include/linux/rtc-ds2404.h b/include/linux/platform_data/rtc-ds2404.h
similarity index 100%
rename from include/linux/rtc-ds2404.h
rename to include/linux/platform_data/rtc-ds2404.h
--
2.8.1
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h to platform_data
2016-06-26 22:02 [rtc-linux] [PATCH 1/5] rtc: ds17287: remove unused header Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 2/5] rtc: ds1286: move header to linux/rtc Alexandre Belloni
2016-06-26 22:03 ` [rtc-linux] [PATCH 3/5] rtc: ds2404: move rtc-ds2404.h to platform_data Alexandre Belloni
@ 2016-06-26 22:03 ` Alexandre Belloni
2016-06-27 6:49 ` [rtc-linux] " Alexander Clouter
` (2 more replies)
2016-06-26 22:03 ` [rtc-linux] [PATCH 5/5] rtc: v3020: move rtc-v3020.h " Alexandre Belloni
3 siblings, 3 replies; 10+ messages in thread
From: Alexandre Belloni @ 2016-06-26 22:03 UTC (permalink / raw)
To: rtc-linux
Cc: Alessandro Zummo, linux-kernel, Alexandre Belloni,
Hartley Sweeten, Ryan Mallon, Alexander Clouter, Jason Cooper,
Andrew Lunn, Sebastian Hesselbarth, Gregory Clement,
linux-arm-kernel
m48t86.h belongs to include/linux/platform_data/
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
Cc: Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ryan Mallon <rmallon@gmail.com>
Cc: Alexander Clouter <alex@digriz.org.uk>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Gregory Clement <gregory.clement@free-electrons.com>
Cc: linux-arm-kernel@lists.infradead.org
arch/arm/mach-ep93xx/ts72xx.c | 2 +-
arch/arm/mach-orion5x/ts78xx-setup.c | 2 +-
drivers/rtc/rtc-m48t86.c | 2 +-
include/linux/{m48t86.h => platform_data/rtc-m48t86.h} | 0
4 files changed, 3 insertions(+), 3 deletions(-)
rename include/linux/{m48t86.h => platform_data/rtc-m48t86.h} (100%)
diff --git a/arch/arm/mach-ep93xx/ts72xx.c b/arch/arm/mach-ep93xx/ts72xx.c
index 45b81a2bcd4b..3b39ea353d30 100644
--- a/arch/arm/mach-ep93xx/ts72xx.c
+++ b/arch/arm/mach-ep93xx/ts72xx.c
@@ -16,7 +16,7 @@
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/io.h>
-#include <linux/m48t86.h>
+#include <linux/platform_data/rtc-m48t86.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c
index 3a58a5d4a28a..8d597267d0c4 100644
--- a/arch/arm/mach-orion5x/ts78xx-setup.c
+++ b/arch/arm/mach-orion5x/ts78xx-setup.c
@@ -16,7 +16,7 @@
#include <linux/platform_device.h>
#include <linux/mv643xx_eth.h>
#include <linux/ata_platform.h>
-#include <linux/m48t86.h>
+#include <linux/platform_data/rtc-m48t86.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
#include <linux/timeriomem-rng.h>
diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c
index f72b91f2501f..0eeb5714c00f 100644
--- a/drivers/rtc/rtc-m48t86.c
+++ b/drivers/rtc/rtc-m48t86.c
@@ -16,7 +16,7 @@
#include <linux/module.h>
#include <linux/rtc.h>
#include <linux/platform_device.h>
-#include <linux/m48t86.h>
+#include <linux/platform_data/rtc-m48t86.h>
#include <linux/bcd.h>
#define M48T86_REG_SEC 0x00
diff --git a/include/linux/m48t86.h b/include/linux/platform_data/rtc-m48t86.h
similarity index 100%
rename from include/linux/m48t86.h
rename to include/linux/platform_data/rtc-m48t86.h
--
2.8.1
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rtc-linux] Re: [PATCH 4/5] rtc: m48t86: move m48t86.h to platform_data
2016-06-26 22:03 ` [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h " Alexandre Belloni
@ 2016-06-27 6:49 ` Alexander Clouter
2016-06-27 16:00 ` [rtc-linux] " Hartley Sweeten
2016-06-27 16:12 ` [rtc-linux] " Jason Cooper
2 siblings, 0 replies; 10+ messages in thread
From: Alexander Clouter @ 2016-06-27 6:49 UTC (permalink / raw)
To: Alexandre Belloni
Cc: rtc-linux, Alessandro Zummo, linux-kernel, Hartley Sweeten,
Ryan Mallon, Jason Cooper, Andrew Lunn, Sebastian Hesselbarth,
Gregory Clement, linux-arm-kernel
Acked-by: Alexander Clouter <alex@digriz.org.uk>
On Mon, Jun 27, 2016 at 12:03:02AM +0200, Alexandre Belloni wrote:
>m48t86.h belongs to include/linux/platform_data/
>
>Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
>---
>Cc: Hartley Sweeten <hsweeten@visionengravers.com>
>Cc: Ryan Mallon <rmallon@gmail.com>
>Cc: Alexander Clouter <alex@digriz.org.uk>
>Cc: Jason Cooper <jason@lakedaemon.net>
>Cc: Andrew Lunn <andrew@lunn.ch>
>Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
>Cc: Gregory Clement <gregory.clement@free-electrons.com>
>Cc: linux-arm-kernel@lists.infradead.org
>
> arch/arm/mach-ep93xx/ts72xx.c | 2 +-
> arch/arm/mach-orion5x/ts78xx-setup.c | 2 +-
> drivers/rtc/rtc-m48t86.c | 2 +-
> include/linux/{m48t86.h => platform_data/rtc-m48t86.h} | 0
> 4 files changed, 3 insertions(+), 3 deletions(-)
> rename include/linux/{m48t86.h => platform_data/rtc-m48t86.h} (100%)
>
>diff --git a/arch/arm/mach-ep93xx/ts72xx.c b/arch/arm/mach-ep93xx/ts72xx.c
>index 45b81a2bcd4b..3b39ea353d30 100644
>--- a/arch/arm/mach-ep93xx/ts72xx.c
>+++ b/arch/arm/mach-ep93xx/ts72xx.c
>@@ -16,7 +16,7 @@
> #include <linux/init.h>
> #include <linux/platform_device.h>
> #include <linux/io.h>
>-#include <linux/m48t86.h>
>+#include <linux/platform_data/rtc-m48t86.h>
> #include <linux/mtd/nand.h>
> #include <linux/mtd/partitions.h>
>
>diff --git a/arch/arm/mach-orion5x/ts78xx-setup.c b/arch/arm/mach-orion5x/ts78xx-setup.c
>index 3a58a5d4a28a..8d597267d0c4 100644
>--- a/arch/arm/mach-orion5x/ts78xx-setup.c
>+++ b/arch/arm/mach-orion5x/ts78xx-setup.c
>@@ -16,7 +16,7 @@
> #include <linux/platform_device.h>
> #include <linux/mv643xx_eth.h>
> #include <linux/ata_platform.h>
>-#include <linux/m48t86.h>
>+#include <linux/platform_data/rtc-m48t86.h>
> #include <linux/mtd/nand.h>
> #include <linux/mtd/partitions.h>
> #include <linux/timeriomem-rng.h>
>diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c
>index f72b91f2501f..0eeb5714c00f 100644
>--- a/drivers/rtc/rtc-m48t86.c
>+++ b/drivers/rtc/rtc-m48t86.c
>@@ -16,7 +16,7 @@
> #include <linux/module.h>
> #include <linux/rtc.h>
> #include <linux/platform_device.h>
>-#include <linux/m48t86.h>
>+#include <linux/platform_data/rtc-m48t86.h>
> #include <linux/bcd.h>
>
> #define M48T86_REG_SEC 0x00
>diff --git a/include/linux/m48t86.h b/include/linux/platform_data/rtc-m48t86.h
>similarity index 100%
>rename from include/linux/m48t86.h
>rename to include/linux/platform_data/rtc-m48t86.h
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 10+ messages in thread* [rtc-linux] RE: [PATCH 4/5] rtc: m48t86: move m48t86.h to platform_data
2016-06-26 22:03 ` [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h " Alexandre Belloni
2016-06-27 6:49 ` [rtc-linux] " Alexander Clouter
@ 2016-06-27 16:00 ` Hartley Sweeten
2016-06-27 16:12 ` [rtc-linux] " Jason Cooper
2 siblings, 0 replies; 10+ messages in thread
From: Hartley Sweeten @ 2016-06-27 16:00 UTC (permalink / raw)
To: Alexandre Belloni, rtc-linux@googlegroups.com
Cc: Alessandro Zummo, linux-kernel@vger.kernel.org, Ryan Mallon,
Alexander Clouter, Jason Cooper, Andrew Lunn,
Sebastian Hesselbarth, Gregory Clement,
linux-arm-kernel@lists.infradead.org
On Sunday, June 26, 2016 3:03 PM, Alexandre Belloni wrote:
> m48t86.h belongs to include/linux/platform_data/
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
> Cc: Hartley Sweeten <hsweeten@visionengravers.com>
> Cc: Ryan Mallon <rmallon@gmail.com>
> Cc: Alexander Clouter <alex@digriz.org.uk>
> Cc: Jason Cooper <jason@lakedaemon.net>
> Cc: Andrew Lunn <andrew@lunn.ch>
> Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
> Cc: Gregory Clement <gregory.clement@free-electrons.com>
> Cc: linux-arm-kernel@lists.infradead.org
>
> arch/arm/mach-ep93xx/ts72xx.c | 2 +-
> arch/arm/mach-orion5x/ts78xx-setup.c | 2 +-
> drivers/rtc/rtc-m48t86.c | 2 +-
> include/linux/{m48t86.h => platform_data/rtc-m48t86.h} | 0
> 4 files changed, 3 insertions(+), 3 deletions(-)
> rename include/linux/{m48t86.h => platform_data/rtc-m48t86.h} (100%)
For ep93xx:
Acked-by: H Hartley Sweeten <hsweeten@visionengravers.com>
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 10+ messages in thread* [rtc-linux] Re: [PATCH 4/5] rtc: m48t86: move m48t86.h to platform_data
2016-06-26 22:03 ` [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h " Alexandre Belloni
2016-06-27 6:49 ` [rtc-linux] " Alexander Clouter
2016-06-27 16:00 ` [rtc-linux] " Hartley Sweeten
@ 2016-06-27 16:12 ` Jason Cooper
2 siblings, 0 replies; 10+ messages in thread
From: Jason Cooper @ 2016-06-27 16:12 UTC (permalink / raw)
To: Alexandre Belloni
Cc: rtc-linux, Alessandro Zummo, linux-kernel, Hartley Sweeten,
Ryan Mallon, Alexander Clouter, Andrew Lunn,
Sebastian Hesselbarth, Gregory Clement, linux-arm-kernel
Hey Alexandre,
On Mon, Jun 27, 2016 at 12:03:02AM +0200, Alexandre Belloni wrote:
> m48t86.h belongs to include/linux/platform_data/
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
> Cc: Hartley Sweeten <hsweeten@visionengravers.com>
> Cc: Ryan Mallon <rmallon@gmail.com>
> Cc: Alexander Clouter <alex@digriz.org.uk>
> Cc: Jason Cooper <jason@lakedaemon.net>
> Cc: Andrew Lunn <andrew@lunn.ch>
> Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
> Cc: Gregory Clement <gregory.clement@free-electrons.com>
> Cc: linux-arm-kernel@lists.infradead.org
>
> arch/arm/mach-ep93xx/ts72xx.c | 2 +-
> arch/arm/mach-orion5x/ts78xx-setup.c | 2 +-
> drivers/rtc/rtc-m48t86.c | 2 +-
> include/linux/{m48t86.h => platform_data/rtc-m48t86.h} | 0
> 4 files changed, 3 insertions(+), 3 deletions(-)
> rename include/linux/{m48t86.h => platform_data/rtc-m48t86.h} (100%)
For the orion5x bit,
Acked-by: Jason Cooper <jason@lakedaemon.net>
thx,
Jason.
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [rtc-linux] [PATCH 5/5] rtc: v3020: move rtc-v3020.h to platform_data
2016-06-26 22:02 [rtc-linux] [PATCH 1/5] rtc: ds17287: remove unused header Alexandre Belloni
` (2 preceding siblings ...)
2016-06-26 22:03 ` [rtc-linux] [PATCH 4/5] rtc: m48t86: move m48t86.h " Alexandre Belloni
@ 2016-06-26 22:03 ` Alexandre Belloni
2016-07-09 7:45 ` [rtc-linux] " Robert Jarzmik
3 siblings, 1 reply; 10+ messages in thread
From: Alexandre Belloni @ 2016-06-26 22:03 UTC (permalink / raw)
To: rtc-linux
Cc: Alessandro Zummo, linux-kernel, Alexandre Belloni, Daniel Mack,
Haojian Zhuang, Robert Jarzmik, linux-arm-kernel
rtc-v3020.h belongs to include/linux/platform_data/
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
Cc: Daniel Mack <daniel@zonque.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: linux-arm-kernel@lists.infradead.org
arch/arm/mach-pxa/cm-x270.c | 2 +-
arch/arm/mach-pxa/cm-x300.c | 2 +-
arch/arm/mach-pxa/em-x270.c | 2 +-
drivers/rtc/rtc-v3020.c | 2 +-
include/linux/{ => platform_data}/rtc-v3020.h | 0
5 files changed, 4 insertions(+), 4 deletions(-)
rename include/linux/{ => platform_data}/rtc-v3020.h (100%)
diff --git a/arch/arm/mach-pxa/cm-x270.c b/arch/arm/mach-pxa/cm-x270.c
index fa5f51d633a3..be4a66166d61 100644
--- a/arch/arm/mach-pxa/cm-x270.c
+++ b/arch/arm/mach-pxa/cm-x270.c
@@ -14,7 +14,7 @@
#include <linux/gpio.h>
#include <linux/delay.h>
-#include <linux/rtc-v3020.h>
+#include <linux/platform_data/rtc-v3020.h>
#include <video/mbxfb.h>
#include <linux/spi/spi.h>
diff --git a/arch/arm/mach-pxa/cm-x300.c b/arch/arm/mach-pxa/cm-x300.c
index 5f5ac7c8faf0..868448d2cd82 100644
--- a/arch/arm/mach-pxa/cm-x300.c
+++ b/arch/arm/mach-pxa/cm-x300.c
@@ -25,7 +25,7 @@
#include <linux/gpio.h>
#include <linux/dm9000.h>
#include <linux/leds.h>
-#include <linux/rtc-v3020.h>
+#include <linux/platform_data/rtc-v3020.h>
#include <linux/pwm.h>
#include <linux/pwm_backlight.h>
diff --git a/arch/arm/mach-pxa/em-x270.c b/arch/arm/mach-pxa/em-x270.c
index 6e0268deec43..03354c21e1f2 100644
--- a/arch/arm/mach-pxa/em-x270.c
+++ b/arch/arm/mach-pxa/em-x270.c
@@ -14,7 +14,7 @@
#include <linux/delay.h>
#include <linux/dm9000.h>
-#include <linux/rtc-v3020.h>
+#include <linux/platform_data/rtc-v3020.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
diff --git a/drivers/rtc/rtc-v3020.c b/drivers/rtc/rtc-v3020.c
index 7a0436329d6c..1f3117b5a83c 100644
--- a/drivers/rtc/rtc-v3020.c
+++ b/drivers/rtc/rtc-v3020.c
@@ -25,7 +25,7 @@
#include <linux/rtc.h>
#include <linux/types.h>
#include <linux/bcd.h>
-#include <linux/rtc-v3020.h>
+#include <linux/platform_data/rtc-v3020.h>
#include <linux/delay.h>
#include <linux/gpio.h>
#include <linux/slab.h>
diff --git a/include/linux/rtc-v3020.h b/include/linux/platform_data/rtc-v3020.h
similarity index 100%
rename from include/linux/rtc-v3020.h
rename to include/linux/platform_data/rtc-v3020.h
--
2.8.1
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rtc-linux] Re: [PATCH 5/5] rtc: v3020: move rtc-v3020.h to platform_data
2016-06-26 22:03 ` [rtc-linux] [PATCH 5/5] rtc: v3020: move rtc-v3020.h " Alexandre Belloni
@ 2016-07-09 7:45 ` Robert Jarzmik
2016-07-09 8:25 ` Alexandre Belloni
0 siblings, 1 reply; 10+ messages in thread
From: Robert Jarzmik @ 2016-07-09 7:45 UTC (permalink / raw)
To: Alexandre Belloni
Cc: rtc-linux, Alessandro Zummo, linux-kernel, Daniel Mack,
Haojian Zhuang, linux-arm-kernel
Alexandre Belloni <alexandre.belloni@free-electrons.com> writes:
> rtc-v3020.h belongs to include/linux/platform_data/
>
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
> Cc: Daniel Mack <daniel@zonque.org>
> Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> Cc: linux-arm-kernel@lists.infradead.org
> arch/arm/mach-pxa/cm-x270.c | 2 +-
> arch/arm/mach-pxa/cm-x300.c | 2 +-
> arch/arm/mach-pxa/em-x270.c | 2 +-
> drivers/rtc/rtc-v3020.c | 2 +-
> include/linux/{ => platform_data}/rtc-v3020.h | 0
> 5 files changed, 4 insertions(+), 4 deletions(-)
> rename include/linux/{ => platform_data}/rtc-v3020.h (100%)
For mach-pxa :
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Is this going through your rtc tree, or should I pick it up through the pxa one ?
Cheers.
--
Robert
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 10+ messages in thread* [rtc-linux] Re: [PATCH 5/5] rtc: v3020: move rtc-v3020.h to platform_data
2016-07-09 7:45 ` [rtc-linux] " Robert Jarzmik
@ 2016-07-09 8:25 ` Alexandre Belloni
0 siblings, 0 replies; 10+ messages in thread
From: Alexandre Belloni @ 2016-07-09 8:25 UTC (permalink / raw)
To: Robert Jarzmik
Cc: rtc-linux, Alessandro Zummo, linux-kernel, Daniel Mack,
Haojian Zhuang, linux-arm-kernel
On 09/07/2016 at 09:45:52 +0200, Robert Jarzmik wrote :
> Alexandre Belloni <alexandre.belloni@free-electrons.com> writes:
>
> > rtc-v3020.h belongs to include/linux/platform_data/
> >
> > Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> > ---
> > Cc: Daniel Mack <daniel@zonque.org>
> > Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> > Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> > Cc: linux-arm-kernel@lists.infradead.org
> > arch/arm/mach-pxa/cm-x270.c | 2 +-
> > arch/arm/mach-pxa/cm-x300.c | 2 +-
> > arch/arm/mach-pxa/em-x270.c | 2 +-
> > drivers/rtc/rtc-v3020.c | 2 +-
> > include/linux/{ => platform_data}/rtc-v3020.h | 0
> > 5 files changed, 4 insertions(+), 4 deletions(-)
> > rename include/linux/{ => platform_data}/rtc-v3020.h (100%)
> For mach-pxa :
> Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
>
> Is this going through your rtc tree, or should I pick it up through the pxa one ?
>
Actually, I've pushed it through rtc-next yesterday. I've just added
your ack now.
--
Alexandre Belloni, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
--
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
---
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 10+ messages in thread