]> git.karo-electronics.de Git - karo-tx-uboot.git/commitdiff
mpc8641: fix address-cells default in old .dts detection
authorBecky Bruce <becky.bruce@freescale.com>
Tue, 11 Nov 2008 01:45:35 +0000 (19:45 -0600)
committerJon Loeliger <jdl@freescale.com>
Tue, 11 Nov 2008 15:44:10 +0000 (09:44 -0600)
address-cells defaults to 2, not 1; so in the unlikely
event that it isn't specified, this patch is required
for correct operation.

Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
board/freescale/mpc8641hpcn/mpc8641hpcn.c

index 285d051edef352ffa9f306f79253a8473ed148c9..b83ed6c45669e8e5b11c712f2103e12eb9538682 100644 (file)
@@ -278,10 +278,10 @@ ft_board_setup(void *blob, bd_t *bd)
 
        if (tmp) {
                u64 addr;
-               if (addrcells && (*addrcells == 2))
-                       addr = *tmp;
-               else
+               if (addrcells && (*addrcells == 1))
                        addr = *(u32 *)tmp;
+               else
+                       addr = *tmp;
 
                if (addr != CONFIG_SYS_CCSRBAR_PHYS)
                        printf("WARNING: The CCSRBAR address in your .dts "