summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/inagua/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/inagua/mainboard.c')
-rw-r--r--src/mainboard/amd/inagua/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/inagua/mainboard.c b/src/mainboard/amd/inagua/mainboard.c
index 9a5e00c2ad..2e2edc3478 100644
--- a/src/mainboard/amd/inagua/mainboard.c
+++ b/src/mainboard/amd/inagua/mainboard.c
@@ -73,7 +73,7 @@ void set_pcie_dereset(void)
/*************************************************
* enable the dedicated function in INAGUA board.
*************************************************/
-static void inagua_enable(device_t dev)
+static void mainboard_enable(device_t dev)
{
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
@@ -82,5 +82,5 @@ static void inagua_enable(device_t dev)
}
struct chip_operations mainboard_ops = {
- .enable_dev = inagua_enable,
+ .enable_dev = mainboard_enable,
};