diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-09-10 10:34:47 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-09-11 21:39:45 +0000 |
commit | e09917641217fea20257ba88fb7ab29912be22ea (patch) | |
tree | 48ccbc1d36a1ed9f75d06014942e72dd80c79c53 /src/mainboard | |
parent | c54a967147c08d3ae80510f1a29704d798e8c804 (diff) |
mb/packardbell: Remove space between function name and '('
Change-Id: Ied86fb05a3930f1bd900d106b5f3c79466a81a6d
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77766
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/packardbell/ms2290/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/packardbell/ms2290/mainboard.c b/src/mainboard/packardbell/ms2290/mainboard.c index 0ba7342178..855bbb3fe8 100644 --- a/src/mainboard/packardbell/ms2290/mainboard.c +++ b/src/mainboard/packardbell/ms2290/mainboard.c @@ -30,7 +30,7 @@ static void mainboard_enable(struct device *dev) }; for (i = 0; i < 256; i++) - ec_write (i, dmp[i]); + ec_write(i, dmp[i]); install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS, GMA_INT15_PANEL_FIT_DEFAULT, GMA_INT15_BOOT_DISPLAY_LFP, 2); |