aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/siemens/mc_apl1/mainboard.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-11-10 20:07:33 +0100
committerAngel Pons <th3fanbus@gmail.com>2020-11-23 12:44:20 +0000
commit28ed7878f0275ca4e2db811d3413bafc70aac830 (patch)
tree4fd1cbf4c0c2ce40245ba7882a04a1c0b20f6dd7 /src/mainboard/siemens/mc_apl1/mainboard.c
parent16c06c273cf88a7fa837bbaa72392872d691f795 (diff)
mb/siemens/mc_apl1: Use `pci_or_config16` function
Change-Id: I93e09fc9801f6d32cade351bac0cba82f671acfe Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47400 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Tested-by: siemens-bot Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Diffstat (limited to 'src/mainboard/siemens/mc_apl1/mainboard.c')
-rw-r--r--src/mainboard/siemens/mc_apl1/mainboard.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainboard/siemens/mc_apl1/mainboard.c b/src/mainboard/siemens/mc_apl1/mainboard.c
index bff97ea8fe..0d93563ccf 100644
--- a/src/mainboard/siemens/mc_apl1/mainboard.c
+++ b/src/mainboard/siemens/mc_apl1/mainboard.c
@@ -187,7 +187,6 @@ static void mainboard_init(void *chip_info)
static void mainboard_final(void *chip_info)
{
- uint16_t cmd = 0;
struct device *dev = NULL;
/* Do board specific things */
@@ -196,9 +195,7 @@ static void mainboard_final(void *chip_info)
/* Set Master Enable for on-board PCI device. */
dev = dev_find_device(PCI_VENDOR_ID_SIEMENS, 0x403f, 0);
if (dev) {
- cmd = pci_read_config16(dev, PCI_COMMAND);
- cmd |= PCI_COMMAND_MASTER;
- pci_write_config16(dev, PCI_COMMAND, cmd);
+ pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
}
/* Set up SPI OPCODE menu before the controller is locked. */
fast_spi_set_opcode_menu();