diff options
Diffstat (limited to 'arch/arm/mach-pxa/pcm027.c')
| -rw-r--r-- | arch/arm/mach-pxa/pcm027.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/arch/arm/mach-pxa/pcm027.c b/arch/arm/mach-pxa/pcm027.c index c77e8f30a43..69918c7e3f1 100644 --- a/arch/arm/mach-pxa/pcm027.c +++ b/arch/arm/mach-pxa/pcm027.c @@ -25,12 +25,12 @@  #include <linux/mtd/physmap.h>  #include <linux/spi/spi.h>  #include <linux/spi/max7301.h> +#include <linux/spi/pxa2xx_spi.h>  #include <linux/leds.h>  #include <asm/mach-types.h>  #include <asm/mach/arch.h>  #include <mach/pxa27x.h> -#include <mach/pxa2xx_spi.h>  #include <mach/pcm027.h>  #include "generic.h" @@ -244,7 +244,7 @@ static void __init pcm027_init(void)  static void __init pcm027_map_io(void)  { -	pxa_map_io(); +	pxa27x_map_io();  	/* initialize sleep mode regs (wake-up sources, etc) */  	PGSR0 = 0x01308000; @@ -258,10 +258,12 @@ static void __init pcm027_map_io(void)  MACHINE_START(PCM027, "Phytec Messtechnik GmbH phyCORE-PXA270")  	/* Maintainer: Pengutronix */ -	.boot_params	= 0xa0000100, +	.atag_offset	= 0x100,  	.map_io		= pcm027_map_io,  	.nr_irqs	= PCM027_NR_IRQS,  	.init_irq	= pxa27x_init_irq, -	.timer		= &pxa_timer, +	.handle_irq	= pxa27x_handle_irq, +	.init_time	= pxa_timer_init,  	.init_machine	= pcm027_init, +	.restart	= pxa_restart,  MACHINE_END  | 
