src/mainboard: Remove unnecessary semicolon
Change-Id: Iab0c7c470a3105b5df7b6b74aebdd1329e7f93ba Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16859 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
parent
38ab6f2839
commit
738a3b043e
|
@ -45,7 +45,7 @@ static void select_socket(UINT8 socket_id)
|
||||||
|
|
||||||
/* Enable SMBus MMIO. */
|
/* Enable SMBus MMIO. */
|
||||||
PciAddress.AddressValue = MAKE_SBDFO (0, 0, 20, 0, 0xD2);
|
PciAddress.AddressValue = MAKE_SBDFO (0, 0, 20, 0, 0xD2);
|
||||||
LibAmdPciRead(AccessWidth8, PciAddress, &PciData8, &StdHeader); ;
|
LibAmdPciRead(AccessWidth8, PciAddress, &PciData8, &StdHeader);
|
||||||
PciData8 |= BIT0;
|
PciData8 |= BIT0;
|
||||||
LibAmdPciWrite(AccessWidth8, PciAddress, &PciData8, &StdHeader);
|
LibAmdPciWrite(AccessWidth8, PciAddress, &PciData8, &StdHeader);
|
||||||
|
|
||||||
|
|
|
@ -136,7 +136,7 @@ int mainboard_smi_apmc(uint8_t apmc)
|
||||||
google_chromeec_set_sci_mask(0);
|
google_chromeec_set_sci_mask(0);
|
||||||
/* Clear all pending events */
|
/* Clear all pending events */
|
||||||
while (google_chromeec_get_event() != 0);
|
while (google_chromeec_get_event() != 0);
|
||||||
google_chromeec_set_smi_mask(MAINBOARD_EC_SMI_EVENTS);;
|
google_chromeec_set_smi_mask(MAINBOARD_EC_SMI_EVENTS);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue