diff options
author | Stefan Roese <sr@denx.de> | 2007-08-10 20:33:06 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-08-10 20:33:06 +0200 |
commit | 59530af55613a8c5fac3c4e0f5fbcf2f1611c483 (patch) | |
tree | f16287c465c5f577cbfc22ae8ee3a1f979519af0 /board/mpc8360emds/pci.c | |
parent | c74b2108e31fe09bd1c5d291c3cf360510d4f13e (diff) | |
parent | 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f (diff) | |
download | u-boot-imx-59530af55613a8c5fac3c4e0f5fbcf2f1611c483.zip u-boot-imx-59530af55613a8c5fac3c4e0f5fbcf2f1611c483.tar.gz u-boot-imx-59530af55613a8c5fac3c4e0f5fbcf2f1611c483.tar.bz2 |
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/mpc8360emds/pci.c')
-rw-r--r-- | board/mpc8360emds/pci.c | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/board/mpc8360emds/pci.c b/board/mpc8360emds/pci.c index 158effe..8f90471 100644 --- a/board/mpc8360emds/pci.c +++ b/board/mpc8360emds/pci.c @@ -20,8 +20,7 @@ #include <i2c.h> #if defined(CONFIG_OF_FLAT_TREE) #include <ft_build.h> -#endif -#if defined(CONFIG_OF_LIBFDT) +#elif defined(CONFIG_OF_LIBFDT) #include <libfdt.h> #include <libfdt_env.h> #endif @@ -207,7 +206,7 @@ void pci_init_board(void) /* Switch temporarily to I2C bus #2 */ orig_i2c_bus = i2c_get_bus_num(); - i2c_set_bus_num(1); + i2c_set_bus_num(1); val8 = 0; i2c_write(0x23, 0x6, 1, &val8, 1); @@ -311,26 +310,25 @@ ft_pci_setup(void *blob, bd_t *bd) int err; int tmp[2]; - nodeoffset = fdt_path_offset (fdt, "/" OF_SOC "/pci@8500"); + nodeoffset = fdt_find_node_by_path(blob, "/" OF_SOC "/pci@8500"); if (nodeoffset >= 0) { tmp[0] = cpu_to_be32(hose[0].first_busno); tmp[1] = cpu_to_be32(hose[0].last_busno); - err = fdt_setprop(fdt, nodeoffset, "bus-range", tmp, sizeof(tmp)); + err = fdt_setprop(blob, nodeoffset, "bus-range", tmp, sizeof(tmp)); } } -#endif /* CONFIG_OF_LIBFDT */ -#ifdef CONFIG_OF_FLAT_TREE +#elif defined(CONFIG_OF_FLAT_TREE) void ft_pci_setup(void *blob, bd_t *bd) { - u32 *p; - int len; + u32 *p; + int len; - p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8500/bus-range", &len); - if (p != NULL) { + p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8500/bus-range", &len); + if (p != NULL) { p[0] = hose[0].first_busno; p[1] = hose[0].last_busno; - } + } } #endif /* CONFIG_OF_FLAT_TREE */ #endif /* CONFIG_PCI */ |