diff options
Diffstat (limited to 'arch/arm/mach-ixp4xx/coyote-setup.c')
| -rw-r--r-- | arch/arm/mach-ixp4xx/coyote-setup.c | 15 | 
1 files changed, 11 insertions, 4 deletions
diff --git a/arch/arm/mach-ixp4xx/coyote-setup.c b/arch/arm/mach-ixp4xx/coyote-setup.c index 355e3de3873..820cae8608f 100644 --- a/arch/arm/mach-ixp4xx/coyote-setup.c +++ b/arch/arm/mach-ixp4xx/coyote-setup.c @@ -110,10 +110,15 @@ static void __init coyote_init(void)  MACHINE_START(ADI_COYOTE, "ADI Engineering Coyote")  	/* Maintainer: MontaVista Software, Inc. */  	.map_io		= ixp4xx_map_io, +	.init_early	= ixp4xx_init_early,  	.init_irq	= ixp4xx_init_irq, -	.timer		= &ixp4xx_timer, -	.boot_params	= 0x0100, +	.init_time	= ixp4xx_timer_init, +	.atag_offset	= 0x100,  	.init_machine	= coyote_init, +#if defined(CONFIG_PCI) +	.dma_zone_size	= SZ_64M, +#endif +	.restart	= ixp4xx_restart,  MACHINE_END  #endif @@ -125,10 +130,12 @@ MACHINE_END  MACHINE_START(IXDPG425, "Intel IXDPG425")  	/* Maintainer: MontaVista Software, Inc. */  	.map_io		= ixp4xx_map_io, +	.init_early	= ixp4xx_init_early,  	.init_irq	= ixp4xx_init_irq, -	.timer		= &ixp4xx_timer, -	.boot_params	= 0x0100, +	.init_time	= ixp4xx_timer_init, +	.atag_offset	= 0x100,  	.init_machine	= coyote_init, +	.restart	= ixp4xx_restart,  MACHINE_END  #endif  | 
