soc/intel/broadwell: Fix out() parameter order
Change-Id: I0897acddd00bad89a5fd784f82380ed0d0d2c06e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69703 Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
parent
c129254655
commit
e10bf582aa
|
@ -309,7 +309,7 @@ u32 clear_tco_status(void)
|
|||
void enable_tco_sci(void)
|
||||
{
|
||||
/* Clear pending events */
|
||||
outl(get_pmbase() + GPE0_STS(3), TCOSCI_STS);
|
||||
outl(TCOSCI_STS, get_pmbase() + GPE0_STS(3));
|
||||
|
||||
/* Enable TCO SCI events */
|
||||
enable_gpe(TCOSCI_EN);
|
||||
|
|
Loading…
Reference in New Issue