summaryrefslogtreecommitdiff
path: root/src/mainboard/gigabyte/ma78gm/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/gigabyte/ma78gm/mainboard.c')
-rw-r--r--src/mainboard/gigabyte/ma78gm/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/gigabyte/ma78gm/mainboard.c b/src/mainboard/gigabyte/ma78gm/mainboard.c
index 9a8e5dcb9e..5ac24201c9 100644
--- a/src/mainboard/gigabyte/ma78gm/mainboard.c
+++ b/src/mainboard/gigabyte/ma78gm/mainboard.c
@@ -71,7 +71,7 @@ u8 is_dev3_present(void)
* enable the dedicated function in board.
* This function called early than rs780_enable.
*************************************************/
-static void ma78gm_enable(device_t dev)
+static void mainboard_enable(device_t dev)
{
printk(BIOS_INFO, "Mainboard MA78GM-US2H Enable. dev=0x%p\n", dev);
@@ -80,5 +80,5 @@ static void ma78gm_enable(device_t dev)
}
struct chip_operations mainboard_ops = {
- .enable_dev = ma78gm_enable,
+ .enable_dev = mainboard_enable,
};