DevMaster64 has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/30769
Change subject: mb/asus/h61m-cs: fix lint errors ......................................................................
mb/asus/h61m-cs: fix lint errors
Change-Id: Ifce33b61d33adbffb3d499d6f608d8700e4a6b25 --- M src/mainboard/asus/h61m-cs/mainboard.c M src/mainboard/asus/h61m-cs/romstage.c 2 files changed, 6 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/69/30769/1
diff --git a/src/mainboard/asus/h61m-cs/mainboard.c b/src/mainboard/asus/h61m-cs/mainboard.c index 17b2cec..bd6b387 100644 --- a/src/mainboard/asus/h61m-cs/mainboard.c +++ b/src/mainboard/asus/h61m-cs/mainboard.c @@ -22,7 +22,11 @@ static void mainboard_enable(struct device *dev) { /* FIXME: fix those values*/ - install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS, GMA_INT15_PANEL_FIT_DEFAULT, GMA_INT15_BOOT_DISPLAY_DEFAULT, 0); + install_intel_vga_int15_handler( + GMA_INT15_ACTIVE_LFP_INT_LVDS, + GMA_INT15_PANEL_FIT_DEFAULT, + GMA_INT15_BOOT_DISPLAY_DEFAULT, + 0); }
struct chip_operations mainboard_ops = { diff --git a/src/mainboard/asus/h61m-cs/romstage.c b/src/mainboard/asus/h61m-cs/romstage.c index 2d430ca..8f49e53 100644 --- a/src/mainboard/asus/h61m-cs/romstage.c +++ b/src/mainboard/asus/h61m-cs/romstage.c @@ -135,7 +135,7 @@ }
void mainboard_get_spd(spd_raw_data *spd, bool id_only) -{ +{ read_spd(&spd[0], 0x50, id_only); //My slot 0 is short so assuming 0x50 read_spd(&spd[2], 0x52, id_only); }