diff options
author | Vincent Siles <vincent.siles@provenrun.com> | 2016-03-29 09:41:16 +0200 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-04-06 10:26:21 -0700 |
commit | 96077896ee01d890d2758ce39aaf81af5f60dc59 (patch) | |
tree | 032a458a63b3c0bddf4aaa14599d6b1dbce16618 | |
parent | 70e21b06425ad6e1e90931333a704a600941cfff (diff) | |
download | talos-obmc-uboot-96077896ee01d890d2758ce39aaf81af5f60dc59.tar.gz talos-obmc-uboot-96077896ee01d890d2758ce39aaf81af5f60dc59.zip |
arm: ls102xa: Fix order of CSU indexes in ns_access.h
This patch aims to fix the order of CSU slave index for the LS1021a
board.
Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>
Reviewed-by: Alison Wang <alison.wang@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
-rw-r--r-- | arch/arm/include/asm/arch-ls102xa/ns_access.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/include/asm/arch-ls102xa/ns_access.h b/arch/arm/include/asm/arch-ls102xa/ns_access.h index a921fb6d14..44acfd2967 100644 --- a/arch/arm/include/asm/arch-ls102xa/ns_access.h +++ b/arch/arm/include/asm/arch-ls102xa/ns_access.h @@ -82,12 +82,12 @@ enum csu_cslx_ind { CSU_CSLX_FTM5, CSU_CSLX_FTM8, CSU_CSLX_FTM7, - CSU_CSLX_COP_DCSR, CSU_CSLX_EPU, - CSU_CSLX_GDI, + CSU_CSLX_COP_DCSR, CSU_CSLX_DDI, + CSU_CSLX_GDI, CSU_CSLX_RESERVED1, - CSU_CSLX_USB3_PHY = 117, + CSU_CSLX_USB3_PHY = 116, CSU_CSLX_RESERVED2, CSU_CSLX_MAX, }; |