From 14c2398ce936da3856ae64e97f976767f3c7669c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sat, 23 Feb 2013 19:33:19 +0100 Subject: Siemens SITEMP G1P1: mainboard.c: Rename `init` to `mainboard_init` This is the common way to name that function, so unify that. Change-Id: I8a01051bd304039662894b89eed53ce14dde98b6 Signed-off-by: Paul Menzel Reviewed-on: http://review.coreboot.org/2491 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/mainboard/siemens/sitemp_g1p1/mainboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mainboard') diff --git a/src/mainboard/siemens/sitemp_g1p1/mainboard.c b/src/mainboard/siemens/sitemp_g1p1/mainboard.c index a73fbd6f6e..c2f9e70ff4 100644 --- a/src/mainboard/siemens/sitemp_g1p1/mainboard.c +++ b/src/mainboard/siemens/sitemp_g1p1/mainboard.c @@ -806,7 +806,7 @@ static void smm_lock( void ) * @param the root device */ -static void init(device_t dev) +static void mainboard_init(device_t dev) { #if CONFIG_PCI_OPTION_ROM_RUN_REALMODE INT15_function_extensions int15_func; @@ -845,7 +845,7 @@ static void enable_dev(device_t dev) detect_hw_variant(dev); update_subsystemid(dev); - dev->ops->init = init; // rest of mainboard init later + dev->ops->init = mainboard_init; // rest of mainboard init later } struct chip_operations mainboard_ops = { -- cgit v1.2.3