diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-31 07:35:57 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-31 07:35:57 -0500 |
commit | 2ca1a615835d9f4990f42102ab1f2ef434e7e89c (patch) | |
tree | 726cf3d5f29a6c66c44e4bd68e7ebed2fd83d059 /arch/arm/mach-ep93xx/edb9312.c | |
parent | e12f0102ac81d660c9f801d0a0e10ccf4537a9de (diff) | |
parent | 6a94cb73064c952255336cc57731904174b2c58f (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Conflicts:
arch/x86/kernel/io_apic.c
Diffstat (limited to 'arch/arm/mach-ep93xx/edb9312.c')
-rw-r--r-- | arch/arm/mach-ep93xx/edb9312.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/mach-ep93xx/edb9312.c b/arch/arm/mach-ep93xx/edb9312.c index 6853e302bc3a..d7179f66d804 100644 --- a/arch/arm/mach-ep93xx/edb9312.c +++ b/arch/arm/mach-ep93xx/edb9312.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/mtd/physmap.h> | 20 | #include <linux/mtd/physmap.h> |
21 | #include <linux/platform_device.h> | 21 | #include <linux/platform_device.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | #include <linux/i2c.h> | ||
23 | #include <mach/hardware.h> | 24 | #include <mach/hardware.h> |
24 | #include <asm/mach-types.h> | 25 | #include <asm/mach-types.h> |
25 | #include <asm/mach/arch.h> | 26 | #include <asm/mach/arch.h> |
@@ -29,8 +30,8 @@ static struct physmap_flash_data edb9312_flash_data = { | |||
29 | }; | 30 | }; |
30 | 31 | ||
31 | static struct resource edb9312_flash_resource = { | 32 | static struct resource edb9312_flash_resource = { |
32 | .start = 0x60000000, | 33 | .start = EP93XX_CS6_PHYS_BASE, |
33 | .end = 0x61ffffff, | 34 | .end = EP93XX_CS6_PHYS_BASE + SZ_32M - 1, |
34 | .flags = IORESOURCE_MEM, | 35 | .flags = IORESOURCE_MEM, |
35 | }; | 36 | }; |
36 | 37 | ||
@@ -45,7 +46,7 @@ static struct platform_device edb9312_flash = { | |||
45 | }; | 46 | }; |
46 | 47 | ||
47 | static struct ep93xx_eth_data edb9312_eth_data = { | 48 | static struct ep93xx_eth_data edb9312_eth_data = { |
48 | .phy_id = 1, | 49 | .phy_id = 1, |
49 | }; | 50 | }; |
50 | 51 | ||
51 | static void __init edb9312_init_machine(void) | 52 | static void __init edb9312_init_machine(void) |
@@ -60,7 +61,7 @@ MACHINE_START(EDB9312, "Cirrus Logic EDB9312 Evaluation Board") | |||
60 | /* Maintainer: Toufeeq Hussain <toufeeq_hussain@infosys.com> */ | 61 | /* Maintainer: Toufeeq Hussain <toufeeq_hussain@infosys.com> */ |
61 | .phys_io = EP93XX_APB_PHYS_BASE, | 62 | .phys_io = EP93XX_APB_PHYS_BASE, |
62 | .io_pg_offst = ((EP93XX_APB_VIRT_BASE) >> 18) & 0xfffc, | 63 | .io_pg_offst = ((EP93XX_APB_VIRT_BASE) >> 18) & 0xfffc, |
63 | .boot_params = 0x00000100, | 64 | .boot_params = EP93XX_SDCE3_PHYS_BASE_SYNC + 0x100, |
64 | .map_io = ep93xx_map_io, | 65 | .map_io = ep93xx_map_io, |
65 | .init_irq = ep93xx_init_irq, | 66 | .init_irq = ep93xx_init_irq, |
66 | .timer = &ep93xx_timer, | 67 | .timer = &ep93xx_timer, |