blob: f6741e2b22cb4280b6574bb8c00bfe65186d5307 [file] [log] [blame]
Jiafei Pan41fe2d72021-08-24 12:01:27 +08001/*
Jiafei Pan5cd4c122022-02-18 18:30:05 +08002 * Copyright 2021-2022 NXP
Jiafei Pan41fe2d72021-08-24 12:01:27 +08003 *
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
12void erratum_a050426(void);
13#endif
14
Jiafei Pan0b960e12021-10-21 16:57:58 +080015#ifdef ERRATA_SOC_A008850
16void erratum_a008850_early(void);
17void erratum_a008850_post(void);
18#endif
19
Jiafei Pan5cd4c122022-02-18 18:30:05 +080020#ifdef ERRATA_SOC_A009660
21void erratum_a009660(void);
22#endif
23
Jiafei Pan86a96d92022-02-18 18:32:18 +080024#ifdef ERRATA_SOC_A010539
25void erratum_a010539(void);
26#endif
27
Jiafei Pan41fe2d72021-08-24 12:01:27 +080028#endif /* ERRATA_LIST_H */