]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
arm: mx6: fix the AIPS?_BASE_ADDR fsckup introduced by commit f5def95698f6
authorLothar Waßmann <LW@KARO-electronics.de>
Thu, 22 Oct 2015 13:04:44 +0000 (15:04 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 22 Oct 2015 13:04:44 +0000 (15:04 +0200)
commit f5def95698f6f3d8923f0e38706e3e5ebed81a10 ("imx: mx6: Fixed AIPS3 base address issue")
claimed to fix an AIPS3 base address issue, while it in fact messed up
the AIPS1 and AIPS2 base addresses too.

arch/arm/cpu/armv7/mx6/soc.c

index 08f2cdbe7fcd6ef31e23556696deaff1d3d5ff4e..6f74175c57c008b877aa83d303035601b30885f3 100644 (file)
@@ -218,10 +218,10 @@ void init_aips(void)
        struct aipstz_regs *aips3;
 #endif
 
-       aips1 = (struct aipstz_regs *)AIPS1_ARB_BASE_ADDR;
-       aips2 = (struct aipstz_regs *)AIPS2_ARB_BASE_ADDR;
+       aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
+       aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
 #ifdef CONFIG_SOC_MX6SX
-       aips3 = (struct aipstz_regs *)AIPS3_ARB_BASE_ADDR;
+       aips3 = (struct aipstz_regs *)AIPS3_CONFIG_BASE_ADDR;
 #endif
 
        /*