summaryrefslogtreecommitdiff
path: root/src/mainboard/avalue/eax-785e/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/avalue/eax-785e/mainboard.c')
-rw-r--r--src/mainboard/avalue/eax-785e/mainboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/avalue/eax-785e/mainboard.c b/src/mainboard/avalue/eax-785e/mainboard.c
index 631891fb70..f812137539 100644
--- a/src/mainboard/avalue/eax-785e/mainboard.c
+++ b/src/mainboard/avalue/eax-785e/mainboard.c
@@ -73,7 +73,7 @@ u8 is_dev3_present(void)
* enable the dedicated function in EAX-785E board.
* This function called early than rs780_enable.
*************************************************/
-static void eax_785e(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 eax_785e(device_t dev)
}
struct chip_operations mainboard_ops = {
- .enable_dev = eax_785e,
+ .enable_dev = mainboard_enable,
};