[PATCH 1/5] ppc pcm030: Fix device resource sizes
Sascha Hauer
s.hauer at pengutronix.de
Wed Dec 14 07:43:03 EST 2011
The device resources are much smaller, the resource mechanism
revealed this because of overlapping devices.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
arch/ppc/boards/pcm030/pcm030.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/ppc/boards/pcm030/pcm030.c b/arch/ppc/boards/pcm030/pcm030.c
index 61fb116..4abf6cb 100644
--- a/arch/ppc/boards/pcm030/pcm030.c
+++ b/arch/ppc/boards/pcm030/pcm030.c
@@ -59,7 +59,7 @@ static int devices_init (void)
sdramsize = mpc5200_get_sdram_size(0) + mpc5200_get_sdram_size(1);
barebox_add_memory_bank("ram0", 0x0, sdramsize);
- add_generic_device("fec_mpc5xxx", -1, NULL, MPC5XXX_FEC, 0,
+ add_generic_device("fec_mpc5xxx", -1, NULL, MPC5XXX_FEC, 0x200,
IORESOURCE_MEM, &fec_info);
ret = stat("/dev/nor0", &s);
@@ -76,9 +76,9 @@ device_initcall(devices_init);
static int console_init(void)
{
- add_generic_device("mpc5xxx_serial", -1, NULL, MPC5XXX_PSC3, 4096,
+ add_generic_device("mpc5xxx_serial", -1, NULL, MPC5XXX_PSC3, 0x200,
IORESOURCE_MEM, NULL);
- add_generic_device("mpc5xxx_serial", -1, NULL, MPC5XXX_PSC6, 4096,
+ add_generic_device("mpc5xxx_serial", -1, NULL, MPC5XXX_PSC6, 0x200,
IORESOURCE_MEM, NULL);
return 0;
}
--
1.7.7.3
More information about the barebox
mailing list