diff options
Diffstat (limited to 'src/northbridge/via')
-rw-r--r-- | src/northbridge/via/vx800/raminit.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/northbridge/via/vx800/raminit.c b/src/northbridge/via/vx800/raminit.c index 058337c66e..6d58f785d3 100644 --- a/src/northbridge/via/vx800/raminit.c +++ b/src/northbridge/via/vx800/raminit.c @@ -20,6 +20,14 @@ #include <spd.h> #include <delay.h> +#ifdef __clang__ +/* Silence clang warnings via pragmas to avoid the problems in this file + blocking analyzes for the rest of the tree. */ +#pragma clang diagnostic ignored "-Wsometimes-uninitialized" +#pragma clang diagnostic ignored "-Wconstant-logical-operand" +#pragma clang diagnostic ignored "-Warray-bounds" +#endif + #if CONFIG_DEBUG_RAM_SETUP #define PRINT_DEBUG_MEM(x) print_debug(x) #define PRINT_DEBUG_MEM_HEX8(x) print_debug_hex8(x) |