summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/lynxpoint/early_me.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-11-24 15:04:05 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-12-18 12:55:20 +0000
commit55405a3dddf93afa01ea522c493dc936b34834c3 (patch)
tree93bd60c353be2f831cb1540bb0d2720f93d83f3a /src/southbridge/intel/lynxpoint/early_me.c
parent310d3271e46e6c2c17d316d723a875be8a521237 (diff)
sb/intel/lynxpoint: Update `intel_me_status()` signature
Update the parameter types of `intel_me_status()` to not be pointers. Change-Id: I0fd577c49bec7a581c340fc2fcadcadd50b1a638 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59625 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/southbridge/intel/lynxpoint/early_me.c')
-rw-r--r--src/southbridge/intel/lynxpoint/early_me.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/lynxpoint/early_me.c b/src/southbridge/intel/lynxpoint/early_me.c
index 9ab00cdcc8..9f477402b0 100644
--- a/src/southbridge/intel/lynxpoint/early_me.c
+++ b/src/southbridge/intel/lynxpoint/early_me.c
@@ -25,7 +25,7 @@ void intel_early_me_status(void)
union me_hfs hfs = { .raw = pci_read_config32(PCH_ME_DEV, PCI_ME_HFS) };
union me_hfs2 hfs2 = { .raw = pci_read_config32(PCH_ME_DEV, PCI_ME_HFS2) };
- intel_me_status(&hfs, &hfs2);
+ intel_me_status(hfs, hfs2);
}
int intel_early_me_init(void)