errata_list.h 441 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright 2021-2022 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #ifndef ERRATA_LIST_H
  8. #define ERRATA_LIST_H
  9. #ifdef ERRATA_SOC_A050426
  10. void erratum_a050426(void);
  11. #endif
  12. #ifdef ERRATA_SOC_A008850
  13. void erratum_a008850_early(void);
  14. void erratum_a008850_post(void);
  15. #endif
  16. #ifdef ERRATA_SOC_A009660
  17. void erratum_a009660(void);
  18. #endif
  19. #ifdef ERRATA_SOC_A010539
  20. void erratum_a010539(void);
  21. #endif
  22. #endif /* ERRATA_LIST_H */