diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-02-22 06:03:08 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-02-24 10:00:21 +0000 |
commit | 813b2f030d7b17e7e550005a108419eb4e372c4e (patch) | |
tree | c06fbdec370e71a9bb1d0164a0146ca58976b041 /src/mainboard/amd/padmelon | |
parent | 32b99169a56aa18047039092856a744d0e3d2d67 (diff) |
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>
Diffstat (limited to 'src/mainboard/amd/padmelon')
-rw-r--r-- | src/mainboard/amd/padmelon/mainboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/padmelon/mainboard.c b/src/mainboard/amd/padmelon/mainboard.c index 1ffa16e991..fc5279b40f 100644 --- a/src/mainboard/amd/padmelon/mainboard.c +++ b/src/mainboard/amd/padmelon/mainboard.c @@ -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, }; |