diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 14:32:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-12 14:32:16 -0500 |
commit | 2989950cea13711f0cc573c26cde8fe08a36be03 (patch) | |
tree | 33d7f099beb7167c2a404fc4e444bd15769e715a /arch/arm/mach-pxa | |
parent | b1286f4e9ac14c8973140b338b4d3c5691264d3b (diff) | |
parent | 0a9995e46f3f9cb28360c89892b939420ac3fa2e (diff) |
Merge tag 'fixes-non-critical' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC Non-critical bug fixes from Olof Johansson:
"Simple bug fixes that were not considered important enough for
inclusion into 3.7, especially those that arrived late during the
merge window.
There's also a MAINTAINERS update for the Renesas platforms in here,
marking Simon Horman as a maintainer and changing the git url to his
tree."
* tag 'fixes-non-critical' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
Update ARM/SHMOBILE section of MAINTAINERS
ARM: Fix Kconfig symbols typo for LEDS
ARM: pxa: add dummy SA1100 rtc clock in pxa25x
ARM: pxa: fix pxa25x gpio wakeup setting
ARM: OMAP4: PM: fix errata handling when CONFIG_PM=n
ARM: cns3xxx: drop unnecessary symbol selection
ARM: vexpress: fix ll debug code when building multiplatform
ARM: OMAP4: retrigger localtimers after re-enabling gic
ARM: OMAP4460: Workaround for ROM bug because of CA9 r2pX GIC control register change.
ARM: OMAP4: PM: add errata support
ARM: davinci: fix return value check by using IS_ERR in tnetv107x_devices_init()
ARM: davinci: uncompress.h: bail out if uart not initialized
ARM: davinci: serial.h: fix uart number in the comment
ARM: davinci: dm644x evm: move pointer dereference below NULL check
ARM: vexpress: Make the debug UART detection more specific
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3352b37b60cf..3f5171eaf67b 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -209,6 +209,7 @@ static struct clk_lookup pxa25x_clkregs[] = { | |||
209 | INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"), | 209 | INIT_CLKREG(&clk_pxa25x_gpio12, NULL, "GPIO12_CLK"), |
210 | INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), | 210 | INIT_CLKREG(&clk_pxa25x_mem, "pxa2xx-pcmcia", NULL), |
211 | INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), | 211 | INIT_CLKREG(&clk_dummy, "pxa-gpio", NULL), |
212 | INIT_CLKREG(&clk_dummy, "sa1100-rtc", NULL), | ||
212 | }; | 213 | }; |
213 | 214 | ||
214 | static struct clk_lookup pxa25x_hwuart_clkreg = | 215 | static struct clk_lookup pxa25x_hwuart_clkreg = |
@@ -338,6 +339,10 @@ void __init pxa25x_map_io(void) | |||
338 | pxa25x_get_clk_frequency_khz(1); | 339 | pxa25x_get_clk_frequency_khz(1); |
339 | } | 340 | } |
340 | 341 | ||
342 | static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = { | ||
343 | .gpio_set_wake = gpio_set_wake, | ||
344 | }; | ||
345 | |||
341 | static struct platform_device *pxa25x_devices[] __initdata = { | 346 | static struct platform_device *pxa25x_devices[] __initdata = { |
342 | &pxa25x_device_udc, | 347 | &pxa25x_device_udc, |
343 | &pxa_device_pmu, | 348 | &pxa_device_pmu, |
@@ -370,6 +375,7 @@ static int __init pxa25x_init(void) | |||
370 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); | 375 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); |
371 | register_syscore_ops(&pxa2xx_clock_syscore_ops); | 376 | register_syscore_ops(&pxa2xx_clock_syscore_ops); |
372 | 377 | ||
378 | pxa_register_device(&pxa_device_gpio, &pxa25x_gpio_info); | ||
373 | ret = platform_add_devices(pxa25x_devices, | 379 | ret = platform_add_devices(pxa25x_devices, |
374 | ARRAY_SIZE(pxa25x_devices)); | 380 | ARRAY_SIZE(pxa25x_devices)); |
375 | if (ret) | 381 | if (ret) |