pxa25x.c (f6fb7af4768bc1ddc2349f6eaefedd746c8e4913) pxa25x.c (b9e25aced33eeb7279ccbaef198f28370cfb4e93)
1/*
2 * linux/arch/arm/mach-pxa/pxa25x.c
3 *
4 * Author: Nicolas Pitre
5 * Created: Jun 15, 2001
6 * Copyright: MontaVista Software Inc.
7 *
8 * Code specific to PXA21x/25x/26x variants.

--- 253 unchanged lines hidden (view full) ---

262 else
263 PWER &=~mask;
264
265 return 0;
266}
267
268void __init pxa25x_init_irq(void)
269{
1/*
2 * linux/arch/arm/mach-pxa/pxa25x.c
3 *
4 * Author: Nicolas Pitre
5 * Created: Jun 15, 2001
6 * Copyright: MontaVista Software Inc.
7 *
8 * Code specific to PXA21x/25x/26x variants.

--- 253 unchanged lines hidden (view full) ---

262 else
263 PWER &=~mask;
264
265 return 0;
266}
267
268void __init pxa25x_init_irq(void)
269{
270 pxa_init_irq(32);
271 pxa_init_irq_gpio(85);
272 pxa_init_irq_set_wake(pxa25x_set_wake);
270 pxa_init_irq(32, pxa25x_set_wake);
271 pxa_init_gpio(85, pxa25x_set_wake);
273}
274
275static struct platform_device *pxa25x_devices[] __initdata = {
276 &pxa_device_udc,
277 &pxa_device_ffuart,
278 &pxa_device_btuart,
279 &pxa_device_stuart,
280 &pxa_device_i2s,

--- 50 unchanged lines hidden ---
272}
273
274static struct platform_device *pxa25x_devices[] __initdata = {
275 &pxa_device_udc,
276 &pxa_device_ffuart,
277 &pxa_device_btuart,
278 &pxa_device_stuart,
279 &pxa_device_i2s,

--- 50 unchanged lines hidden ---