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>
This commit is contained in:
parent
75c5eadaf6
commit
141020a80a
|
@ -155,10 +155,10 @@ the SPD array must be `0x50`. After testing all the slots, your `mainboard_get_s
|
||||||
should look similar to this:
|
should look similar to this:
|
||||||
|
|
||||||
void mainboard_get_spd(spd_raw_data *spd) {
|
void mainboard_get_spd(spd_raw_data *spd) {
|
||||||
read_spd (&spd[0], 0x50);
|
read_spd(&spd[0], 0x50);
|
||||||
read_spd (&spd[1], 0x51);
|
read_spd(&spd[1], 0x51);
|
||||||
read_spd (&spd[2], 0x52);
|
read_spd(&spd[2], 0x52);
|
||||||
read_spd (&spd[3], 0x53);
|
read_spd(&spd[3], 0x53);
|
||||||
}
|
}
|
||||||
|
|
||||||
Note that there should be one line per memory slot on the mainboard.
|
Note that there should be one line per memory slot on the mainboard.
|
||||||
|
|
Loading…
Reference in New Issue