diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-06-25 05:46:56 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2017-06-27 17:00:27 +0000 |
commit | 8e6bb80e9a71cf07be8310fc8ce582e700f69c6d (patch) | |
tree | 7a1216eee31525493a6411dfb8d8852f5aa18ad7 /src/vendorcode/amd/agesa/f15tn | |
parent | c02b5e22a38dba429b1f058b305b6ddfdd7246b0 (diff) |
vendorcode/amd: Satisfy clang's bracing requirements
src/vendorcode/amd/agesa/f15/Include/OptionMemoryInstall.h:3688:7: error:
suggest braces around initialization of subobject
Change-Id: Id086a64205dfffa2d1324993f4164508b57b6993
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/20382
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/vendorcode/amd/agesa/f15tn')
-rw-r--r-- | src/vendorcode/amd/agesa/f15tn/Include/OptionMemoryInstall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vendorcode/amd/agesa/f15tn/Include/OptionMemoryInstall.h b/src/vendorcode/amd/agesa/f15tn/Include/OptionMemoryInstall.h index 0cb25b8767..457c51e475 100644 --- a/src/vendorcode/amd/agesa/f15tn/Include/OptionMemoryInstall.h +++ b/src/vendorcode/amd/agesa/f15tn/Include/OptionMemoryInstall.h @@ -4747,7 +4747,7 @@ BOOLEAN MemFS3DefConstructorRet ( 0 }; MEM_FEAT_TRAIN_SEQ memTrainSequenceDDR2[] = { - 0 + { 0 } }; #endif #if OPTION_DDR3 @@ -4755,7 +4755,7 @@ BOOLEAN MemFS3DefConstructorRet ( 0 }; MEM_FEAT_TRAIN_SEQ memTrainSequenceDDR3[] = { - 0 + { 0 } }; #endif /*--------------------------------------------------------------------------------------------------- |