diff options
author | Tom Rini <trini@ti.com> | 2013-08-20 11:34:24 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-08-20 11:34:24 -0400 |
commit | 63980c296aad0708f486d9229394b9000c874a90 (patch) | |
tree | cf04c10cab0ca6786529b62ee0a4f3f82089d301 /arch/powerpc/cpu | |
parent | 39bc12ddc36c9e30199471da0f3a929b178a04b2 (diff) | |
parent | 3fbb517f30fe68e29640bee63ab366569914d898 (diff) | |
download | u-boot-imx-63980c296aad0708f486d9229394b9000c874a90.zip u-boot-imx-63980c296aad0708f486d9229394b9000c874a90.tar.gz u-boot-imx-63980c296aad0708f486d9229394b9000c874a90.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-i2c
Diffstat (limited to 'arch/powerpc/cpu')
-rw-r--r-- | arch/powerpc/cpu/mpc85xx/cmd_errata.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/cpu/mpc85xx/cmd_errata.c b/arch/powerpc/cpu/mpc85xx/cmd_errata.c index cbb443f..05436f9 100644 --- a/arch/powerpc/cpu/mpc85xx/cmd_errata.c +++ b/arch/powerpc/cpu/mpc85xx/cmd_errata.c @@ -248,6 +248,11 @@ static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) #ifdef CONFIG_SYS_FSL_ERRATUM_A005812 puts("Work-around for Erratum A-005812 enabled\n"); #endif +#ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447 + if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) || + (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV)) + puts("Work-around for Erratum I2C-A004447 enabled\n"); +#endif return 0; } |