diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2010-07-13 00:39:46 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2010-07-26 13:07:57 -0500 | 
| commit | 61054ffa1690b2aef4e845c6aa071840b93abff6 (patch) | |
| tree | 3cede163d3746deba5cd233e8ea22123e855a4b7 /arch/powerpc/cpu/mpc85xx/cmd_errata.c | |
| parent | 34a8258fea40283426cf47c47008f9e6d2286080 (diff) | |
| download | olio-uboot-2014.01-61054ffa1690b2aef4e845c6aa071840b93abff6.tar.xz olio-uboot-2014.01-61054ffa1690b2aef4e845c6aa071840b93abff6.zip | |
powerpc/p4080: Add workaround for errata SERDES8
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/cmd_errata.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cmd_errata.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/arch/powerpc/cpu/mpc85xx/cmd_errata.c b/arch/powerpc/cpu/mpc85xx/cmd_errata.c index d7835c8d6..01c462c4b 100644 --- a/arch/powerpc/cpu/mpc85xx/cmd_errata.c +++ b/arch/powerpc/cpu/mpc85xx/cmd_errata.c @@ -41,6 +41,10 @@ static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	}  #endif +#if defined(CONFIG_SYS_P4080_ERRATUM_SERDES8) +	puts("Work-around for Erratum SERDES8 enabled\n"); +#endif +  	return 0;  } |