| * This code is free software; you can redistribute it and/or modify it |
| * under the terms of the GNU Library General Public License version 2. |
| #ifndef CONFIG_ERRATA_FORCE |
| #define CONFIG_ERRATA_FORCE 0 |
| #define _ERRATA(erratum) errata("ERRATA_" # erratum) |
| #define ERRATA(erratum) _ERRATA(erratum) |
| #define _ERRATA_RELAXED(erratum) errata_relaxed("ERRATA_" # erratum) |
| #define ERRATA_RELAXED(erratum) _ERRATA_RELAXED(erratum) |
| static inline bool errata_force(void) |
| if (CONFIG_ERRATA_FORCE == 1) |
| s = getenv("ERRATA_FORCE"); |
| return s && (*s == '1' || *s == 'y' || *s == 'Y'); |
| static inline bool errata(const char *erratum) |
| return s && (*s == '1' || *s == 'y' || *s == 'Y'); |
| static inline bool errata_relaxed(const char *erratum) |
| return !(s && (*s == '0' || *s == 'n' || *s == 'N')); |