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