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:
Kyösti Mälkki 2022-11-15 14:00:22 +02:00 committed by Felix Held
parent c129254655
commit e10bf582aa
1 changed files with 1 additions and 1 deletions

View File

@ -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);