mb/amd,google: Rename static functions to mainboard_enable

Let's not have 7 boards of all use a different name for
the .enable_dev function in mainboard chip_operations.

Change-Id: I07f3569e6af85f4f1635595125fe2881ab9ddd43
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50999
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Kyösti Mälkki 2021-02-22 06:03:08 +02:00
commit 813b2f030d
7 changed files with 14 additions and 14 deletions

View file

@ -104,7 +104,7 @@ static void mainboard_init(void *chip_info)
/*************************************************
* enable the dedicated function in padmelon board.
*************************************************/
static void padmelon_enable(struct device *dev)
static void mainboard_enable(struct device *dev)
{
printk(BIOS_INFO, "Mainboard "
CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
@ -115,5 +115,5 @@ static void padmelon_enable(struct device *dev)
struct chip_operations mainboard_ops = {
.init = mainboard_init,
.enable_dev = padmelon_enable,
.enable_dev = mainboard_enable,
};