aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/pi/hudson/bootblock.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-04-22 16:07:39 +0200
committerMichał Żygowski <michal.zygowski@3mdeb.com>2020-04-27 11:32:49 +0000
commit2f58a007a7528090454d3384bacc973c503b4d20 (patch)
treea0fa9210d72cb60d84b64d5def10a58150ed4903 /src/southbridge/amd/pi/hudson/bootblock.c
parentdb4f3bacce835222e53dea91976b15abc2113779 (diff)
sb/pi/hudson: Const'ify pci_devfn_t devices
Change-Id: I9e63c811c4ac5674b2930304455d828ee516b521 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40601 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/southbridge/amd/pi/hudson/bootblock.c')
-rw-r--r--src/southbridge/amd/pi/hudson/bootblock.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/southbridge/amd/pi/hudson/bootblock.c b/src/southbridge/amd/pi/hudson/bootblock.c
index d0c3646fd5..021e804b6c 100644
--- a/src/southbridge/amd/pi/hudson/bootblock.c
+++ b/src/southbridge/amd/pi/hudson/bootblock.c
@@ -19,9 +19,7 @@
static void hudson_enable_rom(void)
{
u8 reg8;
- pci_devfn_t dev;
-
- dev = PCI_DEV(0, 0x14, 3);
+ const pci_devfn_t dev = PCI_DEV(0, 0x14, 3);
/* Decode variable LPC ROM address ranges 1 and 2. */
reg8 = pci_s_read_config8(dev, 0x48);
@@ -49,7 +47,6 @@ static void hudson_enable_rom(void)
void bootblock_early_southbridge_init(void)
{
- pci_devfn_t dev;
u32 data;
hudson_enable_rom();
@@ -64,7 +61,7 @@ void bootblock_early_southbridge_init(void)
else if (CONFIG(POST_DEVICE_LPC))
hudson_lpc_port80();
- dev = PCI_DEV(0, 0x14, 3);
+ const pci_devfn_t dev = PCI_DEV(0, 0x14, 3);
data = pci_read_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE);
/* enable 0x2e/0x4e IO decoding for SuperIO */
pci_write_config32(dev, LPC_IO_OR_MEM_DECODE_ENABLE, data | 3);