pxa25x.c (ca6e4405779ed56ebac941570615abd667c72c02) | pxa25x.c (4be0856fa34ef3b0681aeec669e50c13e394f145) |
---|---|
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. --- 192 unchanged lines hidden (view full) --- 201 if ((ret = pxa_init_dma(IRQ_DMA, 16))) 202 return ret; 203 204 pxa25x_init_pm(); 205 206 register_syscore_ops(&pxa_irq_syscore_ops); 207 register_syscore_ops(&pxa2xx_mfp_syscore_ops); 208 | 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. --- 192 unchanged lines hidden (view full) --- 201 if ((ret = pxa_init_dma(IRQ_DMA, 16))) 202 return ret; 203 204 pxa25x_init_pm(); 205 206 register_syscore_ops(&pxa_irq_syscore_ops); 207 register_syscore_ops(&pxa2xx_mfp_syscore_ops); 208 |
209 pxa2xx_set_dmac_info(16); |
|
209 pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info); 210 ret = platform_add_devices(pxa25x_devices, 211 ARRAY_SIZE(pxa25x_devices)); 212 if (ret) 213 return ret; 214 } 215 216 return ret; 217} 218 219postcore_initcall(pxa25x_init); | 210 pxa_register_device(&pxa25x_device_gpio, &pxa25x_gpio_info); 211 ret = platform_add_devices(pxa25x_devices, 212 ARRAY_SIZE(pxa25x_devices)); 213 if (ret) 214 return ret; 215 } 216 217 return ret; 218} 219 220postcore_initcall(pxa25x_init); |