summaryrefslogtreecommitdiff
path: root/src/mainboard/asus
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-04-08 12:15:16 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-04-14 09:56:33 +0000
commitefc3d04af2f0cbf3d0afeceeadb1d1e09039047d (patch)
treee190b81969f9fc31c1cabd9f4c7147be4e0032d3 /src/mainboard/asus
parent4f771fe98b893f03703e9081a29d08459111c2b2 (diff)
downloadcoreboot-efc3d04af2f0cbf3d0afeceeadb1d1e09039047d.tar.xz
src/mainboard: Use 'const' to set pnp_devfn_t statically
Change-Id: I50ac6914fadc02491df2eccb437eada89fd12b82 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40272 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/mainboard/asus')
-rw-r--r--src/mainboard/asus/f2a85-m/bootblock.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/asus/f2a85-m/bootblock.c b/src/mainboard/asus/f2a85-m/bootblock.c
index c63ab08b71..4fe0423138 100644
--- a/src/mainboard/asus/f2a85-m/bootblock.c
+++ b/src/mainboard/asus/f2a85-m/bootblock.c
@@ -24,8 +24,8 @@ static void sbxxx_enable_48mhzout(void)
static void superio_init_m(void)
{
- pnp_devfn_t uart = PNP_DEV(0x2e, IT8728F_SP1);
- pnp_devfn_t gpio = PNP_DEV(0x2e, IT8728F_GPIO);
+ const pnp_devfn_t uart = PNP_DEV(0x2e, IT8728F_SP1);
+ const pnp_devfn_t gpio = PNP_DEV(0x2e, IT8728F_GPIO);
ite_kill_watchdog(gpio);
ite_enable_serial(uart, CONFIG_TTYS0_BASE);
@@ -34,7 +34,7 @@ static void superio_init_m(void)
static void superio_init_m_pro(void)
{
- pnp_devfn_t uart = PNP_DEV(0x2e, NCT6779D_SP1);
+ const pnp_devfn_t uart = PNP_DEV(0x2e, NCT6779D_SP1);
nuvoton_enable_serial(uart, CONFIG_TTYS0_BASE);
}