mb/lenovo: Remove space between function name and '('

Change-Id: I9b1e3ad668c332bebdaf48a2e95f1f9e2131d598
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77765
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
Elyes Haouas 2023-09-10 10:33:55 +02:00
parent fb39a2f91a
commit d3bb087360
2 changed files with 4 additions and 4 deletions

View File

@ -52,6 +52,6 @@ void mainboard_fill_pei_data(struct pei_data *pei_data)
void mainboard_get_spd(spd_raw_data *spd, bool id_only)
{
read_spd (&spd[0], 0x50, id_only);
read_spd (&spd[2], 0x51, id_only);
read_spd(&spd[0], 0x50, id_only);
read_spd(&spd[2], 0x51, id_only);
}

View File

@ -23,6 +23,6 @@ const struct southbridge_usb_port mainboard_usb_ports[] = {
void mainboard_get_spd(spd_raw_data *spd, bool id_only)
{
read_spd (&spd[0], 0x50, id_only);
read_spd (&spd[2], 0x51, id_only);
read_spd(&spd[0], 0x50, id_only);
read_spd(&spd[2], 0x51, id_only);
}