diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-01-03 11:38:40 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-01-04 17:20:38 +0000 |
commit | 0571afe5d2b576f8e89eaabf4bbd0f7a31fd0a62 (patch) | |
tree | 38013f7c805f6d035d33ba57765c7eab447cc0f3 /src/mainboard/avalue/eax-785e/get_bus_conf.c | |
parent | c0b1be0ba1d0c87d9670e695c60eeb6ec901a2d8 (diff) |
amdfam10 boards: Drop extern on bus_rs780 and sbdn_rs780
Change-Id: I7dc943f3376e9b706d3d486231525df85f806858
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/30631
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/mainboard/avalue/eax-785e/get_bus_conf.c')
-rw-r--r-- | src/mainboard/avalue/eax-785e/get_bus_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/avalue/eax-785e/get_bus_conf.c b/src/mainboard/avalue/eax-785e/get_bus_conf.c index ce663a52b2..e0d89b5f1e 100644 --- a/src/mainboard/avalue/eax-785e/get_bus_conf.c +++ b/src/mainboard/avalue/eax-785e/get_bus_conf.c @@ -23,7 +23,7 @@ /* Global variables for MB layouts and these will be shared by irqtable mptable * and acpi_tables busnum is default. */ -u8 bus_rs780[11]; +static u8 bus_rs780[11]; u8 bus_sb800[6]; u32 apicid_sb800; @@ -45,7 +45,7 @@ u32 hcdnx[] = { }; -u32 sbdn_rs780; +static u32 sbdn_rs780; u32 sbdn_sb800; void get_bus_conf(void) |