1 /* 2 * Copyright 2021 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #include <common/debug.h> 9 10 #include "errata_list.h" 11 soc_errata(void)12void soc_errata(void) 13 { 14 #ifdef ERRATA_SOC_A050426 15 INFO("SoC workaround for Errata A050426 was applied\n"); 16 erratum_a050426(); 17 #endif 18 /* 19 * The following DDR Erratas workaround are implemented in DDR driver, 20 * but print information here. 21 */ 22 #if ERRATA_DDR_A011396 23 INFO("SoC workaround for DDR Errata A011396 was applied\n"); 24 #endif 25 #if ERRATA_DDR_A050450 26 INFO("SoC workaround for DDR Errata A050450 was applied\n"); 27 #endif 28 } 29