* [PATCH v5 10/10] ARM: LPC32xx: Move common code to common.c
@ 2012-04-21 9:55 Roland Stigge
0 siblings, 0 replies; 2+ messages in thread
From: Roland Stigge @ 2012-04-21 9:55 UTC (permalink / raw)
To: gregkh, linux-usb, linux-kernel, kevin.wells, srinivas.bakki,
stern, linux-arm-kernel, arnd
Cc: Roland Stigge
This patch moves non-boardspecific LPC32xx code to common.c
Signed-off-by: Roland Stigge <stigge@antcom.de>
---
arch/arm/mach-lpc32xx/common.c | 13 +++++++++++++
arch/arm/mach-lpc32xx/phy3250.c | 13 -------------
2 files changed, 13 insertions(+), 13 deletions(-)
--- linux-2.6.orig/arch/arm/mach-lpc32xx/common.c
+++ linux-2.6/arch/arm/mach-lpc32xx/common.c
@@ -223,3 +223,16 @@ void lpc23xx_restart(char mode, const ch
while (1)
;
}
+
+static int __init lpc32xx_display_uid(void)
+{
+ u32 uid[4];
+
+ lpc32xx_get_uid(uid);
+
+ printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
+ uid[3], uid[2], uid[1], uid[0]);
+
+ return 1;
+}
+arch_initcall(lpc32xx_display_uid);
--- linux-2.6.orig/arch/arm/mach-lpc32xx/phy3250.c
+++ linux-2.6/arch/arm/mach-lpc32xx/phy3250.c
@@ -310,19 +310,6 @@ static void __init lpc3250_machine_init(
SPI0_CS_GPIO);
}
-static int __init lpc32xx_display_uid(void)
-{
- u32 uid[4];
-
- lpc32xx_get_uid(uid);
-
- printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
- uid[3], uid[2], uid[1], uid[0]);
-
- return 1;
-}
-arch_initcall(lpc32xx_display_uid);
-
static char const *lpc32xx_dt_compat[] __initdata = {
"nxp,lpc3220",
"nxp,lpc3230",
^ permalink raw reply [flat|nested] 2+ messages in thread* [PATCH v5 0/10] Second patchset for LPC32xx device tree conversion
@ 2012-04-21 9:34 Roland Stigge
2012-04-21 9:34 ` [PATCH v5 10/10] ARM: LPC32xx: Move common code to common.c Roland Stigge
0 siblings, 1 reply; 2+ messages in thread
From: Roland Stigge @ 2012-04-21 9:34 UTC (permalink / raw)
To: arm, thierry.reding, arnd, linux-arm-kernel, gregkh, linux-usb,
linux-kernel, linux-input, dmitry.torokhov, axel.lin, broonie,
marek.vasut, devel, kevin.wells, srinivas.bakki
Cc: Roland Stigge
This is the second patch set for device tree conversion of mach-lpc32xx. It
builds upon and requires the previously posted first set of 8 plus the GPIO
patch.
It touches different subsystems (USB/OHCI, input/touchscreen, iio/adc and
mach-lpc32xx) to be picked by the respective subsystem maintainer and applied
separately.
Signed-off-by: Roland Stigge <stigge@antcom.de>
--
Applies to v3.4-rc3
Changes since v4:
* phy3250.dts: Changed clock-frequency to decimal
* common.c/i2c: Rebased on changes in first patch set
* lpc32xx.dtsi: Adjusted compatible strings to non-wildcard versions
Roland Stigge (10):
ohci-nxp: Driver cleanup
ohci-nxp: Device tree support
ARM: LPC32xx: clock.c cleanup
ARM: LPC32xx: clock.c dma adjustment
ARM: LPC32xx: Remove obsolete platform Kconfig
input: Device tree support for LPC32xx touchscreen
iio: lpc32xx-adc: Remove driver conflict due to device tree
ARM: LPC32xx: DTS files for device tree conversion
ARM: LPC32xx: Device tree support
ARM: LPC32xx: Move common code to common.c
Documentation/devicetree/bindings/arm/lpc32xx-mic.txt | 38 +
Documentation/devicetree/bindings/arm/lpc32xx.txt | 8
Documentation/devicetree/bindings/input/touchscreen/lpc32xx-tsc.txt | 16
Documentation/devicetree/bindings/usb/ohci-nxp.txt | 16
arch/arm/Kconfig | 1
arch/arm/boot/dts/lpc32xx.dtsi | 303 ++++++++++
arch/arm/boot/dts/phy3250.dts | 115 +++
arch/arm/mach-lpc32xx/Kconfig | 26
arch/arm/mach-lpc32xx/clock.c | 77 +-
arch/arm/mach-lpc32xx/common.c | 192 ------
arch/arm/mach-lpc32xx/common.h | 14
arch/arm/mach-lpc32xx/irq.c | 78 +-
arch/arm/mach-lpc32xx/phy3250.c | 146 ++--
drivers/input/touchscreen/lpc32xx_ts.c | 10
drivers/staging/iio/adc/Kconfig | 8
drivers/usb/host/ohci-nxp.c | 55 +
16 files changed, 704 insertions(+), 399 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH v5 10/10] ARM: LPC32xx: Move common code to common.c
2012-04-21 9:34 [PATCH v5 0/10] Second patchset for LPC32xx device tree conversion Roland Stigge
@ 2012-04-21 9:34 ` Roland Stigge
0 siblings, 0 replies; 2+ messages in thread
From: Roland Stigge @ 2012-04-21 9:34 UTC (permalink / raw)
To: arm, thierry.reding, arnd, linux-arm-kernel, gregkh, linux-usb,
linux-kernel, linux-input, dmitry.torokhov, axel.lin, broonie,
marek.vasut, devel, kevin.wells, srinivas.bakki
Cc: Roland Stigge
This patch moves non-boardspecific LPC32xx code to common.c
Signed-off-by: Roland Stigge <stigge@antcom.de>
---
arch/arm/mach-lpc32xx/common.c | 13 +++++++++++++
arch/arm/mach-lpc32xx/phy3250.c | 13 -------------
2 files changed, 13 insertions(+), 13 deletions(-)
--- linux-2.6.orig/arch/arm/mach-lpc32xx/common.c
+++ linux-2.6/arch/arm/mach-lpc32xx/common.c
@@ -223,3 +223,16 @@ void lpc23xx_restart(char mode, const ch
while (1)
;
}
+
+static int __init lpc32xx_display_uid(void)
+{
+ u32 uid[4];
+
+ lpc32xx_get_uid(uid);
+
+ printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
+ uid[3], uid[2], uid[1], uid[0]);
+
+ return 1;
+}
+arch_initcall(lpc32xx_display_uid);
--- linux-2.6.orig/arch/arm/mach-lpc32xx/phy3250.c
+++ linux-2.6/arch/arm/mach-lpc32xx/phy3250.c
@@ -310,19 +310,6 @@ static void __init lpc3250_machine_init(
SPI0_CS_GPIO);
}
-static int __init lpc32xx_display_uid(void)
-{
- u32 uid[4];
-
- lpc32xx_get_uid(uid);
-
- printk(KERN_INFO "LPC32XX unique ID: %08x%08x%08x%08x\n",
- uid[3], uid[2], uid[1], uid[0]);
-
- return 1;
-}
-arch_initcall(lpc32xx_display_uid);
-
static char const *lpc32xx_dt_compat[] __initdata = {
"nxp,lpc3220",
"nxp,lpc3230",
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-21 9:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-21 9:55 [PATCH v5 10/10] ARM: LPC32xx: Move common code to common.c Roland Stigge
-- strict thread matches above, loose matches on Subject: below --
2012-04-21 9:34 [PATCH v5 0/10] Second patchset for LPC32xx device tree conversion Roland Stigge
2012-04-21 9:34 ` [PATCH v5 10/10] ARM: LPC32xx: Move common code to common.c Roland Stigge
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®