summaryrefslogtreecommitdiff
path: root/src/mainboard/gigabyte/ga-b75m-d3h
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2019-02-07 10:48:10 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-02-08 10:58:37 +0000
commit498f1cc1f3c3c501101c0b052502ec9a04bbd874 (patch)
tree302fe65d60c8330331db8c8317e7f3291a7c5ca0 /src/mainboard/gigabyte/ga-b75m-d3h
parent9e366b4e0b4135eb8f4d4a5aed021d3858243a88 (diff)
downloadcoreboot-498f1cc1f3c3c501101c0b052502ec9a04bbd874.tar.xz
mb/*/*/romstage: curly braces after the function definition
See Documentation/coding_style.md, specifically "Placing Braces and Spaces" section. Change-Id: Ia6a2f3d3547c16500996260b0ece9ec693f00113 Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Reviewed-on: https://review.coreboot.org/c/31268 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/mainboard/gigabyte/ga-b75m-d3h')
-rw-r--r--src/mainboard/gigabyte/ga-b75m-d3h/romstage.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/gigabyte/ga-b75m-d3h/romstage.c b/src/mainboard/gigabyte/ga-b75m-d3h/romstage.c
index 543e7658b0..dbb015d41b 100644
--- a/src/mainboard/gigabyte/ga-b75m-d3h/romstage.c
+++ b/src/mainboard/gigabyte/ga-b75m-d3h/romstage.c
@@ -86,7 +86,8 @@ const struct southbridge_usb_port mainboard_usb_ports[] = {
{ 1, 5, 6 },
};
-void mainboard_get_spd(spd_raw_data *spd, bool id_only) {
+void mainboard_get_spd(spd_raw_data *spd, bool id_only)
+{
read_spd (&spd[0], 0x50, id_only);
read_spd (&spd[1], 0x51, id_only);
read_spd (&spd[2], 0x52, id_only);