diff options
Diffstat (limited to 'arch/arm/mach-omap1/board-perseus2.c')
| -rw-r--r-- | arch/arm/mach-omap1/board-perseus2.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/arm/mach-omap1/board-perseus2.c b/arch/arm/mach-omap1/board-perseus2.c index 198b05417bf..9a7e483ed6f 100644 --- a/arch/arm/mach-omap1/board-perseus2.c +++ b/arch/arm/mach-omap1/board-perseus2.c @@ -28,15 +28,15 @@  #include <asm/mach/arch.h>  #include <asm/mach/map.h> -#include <plat/tc.h> +#include <mach/tc.h>  #include <mach/mux.h> -#include <plat/fpga.h>  #include <mach/flash.h>  #include <mach/hardware.h>  #include "iomap.h"  #include "common.h" +#include "fpga.h"  static const unsigned int p2_keymap[] = {  	KEY(0, 0, KEY_UP), @@ -231,9 +231,9 @@ static struct omap_lcd_config perseus2_lcd_config __initdata = {  static void __init perseus2_init_smc91x(void)  { -	fpga_write(1, H2P2_DBG_FPGA_LAN_RESET); +	__raw_writeb(1, H2P2_DBG_FPGA_LAN_RESET);  	mdelay(50); -	fpga_write(fpga_read(H2P2_DBG_FPGA_LAN_RESET) & ~1, +	__raw_writeb(__raw_readb(H2P2_DBG_FPGA_LAN_RESET) & ~1,  		   H2P2_DBG_FPGA_LAN_RESET);  	mdelay(50);  } @@ -324,7 +324,6 @@ MACHINE_START(OMAP_PERSEUS2, "OMAP730 Perseus2")  	.atag_offset	= 0x100,  	.map_io		= omap_perseus2_map_io,  	.init_early     = omap1_init_early, -	.reserve	= omap_reserve,  	.init_irq	= omap1_init_irq,  	.init_machine	= omap_perseus2_init,  	.init_late	= omap1_init_late,  |