aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2013-02-23 19:33:19 +0100
committerPatrick Georgi <patrick@georgi-clan.de>2013-02-24 17:03:08 +0100
commit14c2398ce936da3856ae64e97f976767f3c7669c (patch)
tree1425f20e72d2cdf15d02394087a8fed74af63658 /src/mainboard
parente533fdaa5902d228c4db694db390113b437a9777 (diff)
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 <paulepanter@users.sourceforge.net> Reviewed-on: http://review.coreboot.org/2491 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/siemens/sitemp_g1p1/mainboard.c4
1 files changed, 2 insertions, 2 deletions
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 = {