diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2022-11-15 14:00:22 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-17 17:23:26 +0000 |
commit | e10bf582aa56faff11c815ab3ab10de5177d0c4e (patch) | |
tree | 2b2227d72f7b4bf7bf56abb695832be55c9ee259 /src/soc/intel | |
parent | c12925465567a5ae42780ffdc4cdb45f91bb47b8 (diff) |
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>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/broadwell/pch/pmutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/broadwell/pch/pmutil.c b/src/soc/intel/broadwell/pch/pmutil.c index 59ae72f3fc..3da6bcea31 100644 --- a/src/soc/intel/broadwell/pch/pmutil.c +++ b/src/soc/intel/broadwell/pch/pmutil.c @@ -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); |