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>
This commit is contained in:
Angel Pons
2021-11-24 15:04:05 +01:00
committed by Felix Held
parent 310d3271e4
commit 55405a3ddd
4 changed files with 29 additions and 29 deletions

View File

@@ -581,7 +581,7 @@ static enum me_bios_path intel_me_path(struct device *dev)
union me_hfs2 hfs2 = { .raw = pci_read_config32(dev, PCI_ME_HFS2) };
/* Check and dump status */
intel_me_status(&hfs, &hfs2);
intel_me_status(hfs, hfs2);
/* Check Current Working State */
switch (hfs.working_state) {