diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2020-01-17 15:58:48 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-02-17 15:44:14 +0000 |
commit | 141020a80aa22181da038da5bf749d4ec79e4f95 (patch) | |
tree | 0457b794af713e4ce2d6b64d2d3c10af8aafc2e4 /util/autoport | |
parent | 75c5eadaf6238bb05e54e6d0dacd4d4966a70219 (diff) |
autoport: Remove space in example code
The coreboot coding style does not insert a space between the function
and argument list.
Change-Id: I740f6c7f513e4f2715c793f61c9d9835c55c9dce
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38912
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/autoport')
-rw-r--r-- | util/autoport/readme.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/autoport/readme.md b/util/autoport/readme.md index b73b44121d..a964e06d87 100644 --- a/util/autoport/readme.md +++ b/util/autoport/readme.md @@ -155,10 +155,10 @@ the SPD array must be `0x50`. After testing all the slots, your `mainboard_get_s should look similar to this: void mainboard_get_spd(spd_raw_data *spd) { - read_spd (&spd[0], 0x50); - read_spd (&spd[1], 0x51); - read_spd (&spd[2], 0x52); - read_spd (&spd[3], 0x53); + read_spd(&spd[0], 0x50); + read_spd(&spd[1], 0x51); + read_spd(&spd[2], 0x52); + read_spd(&spd[3], 0x53); } Note that there should be one line per memory slot on the mainboard. |