diff options
author | Jens Rottmann <JRottmann@LiPPERTembedded.de> | 2013-02-26 15:56:11 +0100 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2013-02-26 16:53:16 +0100 |
commit | 5e70766f14253f53190ddd49a544460c6bc1e528 (patch) | |
tree | 0c7a33db64b3afacd5d3eeba8c6da7226ce16b49 /src/mainboard/amd/inagua/mainboard.c | |
parent | 37ef52d44b3d527d6a4fb84eaffa4260b7521d4a (diff) |
AMD Fam14 boards: reduce unnecessary differences, 2nd attempt
This patch reduces unnecessary differences between AMD Inagua, Persimmon,
Union Station, South Station and Asrock E350M1. It's only cosmetical, but
makes them a little bit easier to compare.
This is the remainder of the original http://review.coreboot.org/2464,
parts of which somehow got lost in a flurry of refactoring and splitting
patches.
Change-Id: I034228be9edaaa4122506763d7bb4158f8e0ec53
Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de>
Reviewed-on: http://review.coreboot.org/2529
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/mainboard/amd/inagua/mainboard.c')
-rw-r--r-- | src/mainboard/amd/inagua/mainboard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/amd/inagua/mainboard.c b/src/mainboard/amd/inagua/mainboard.c index 2e2edc3478..83ac9e82bc 100644 --- a/src/mainboard/amd/inagua/mainboard.c +++ b/src/mainboard/amd/inagua/mainboard.c @@ -70,9 +70,9 @@ void set_pcie_dereset(void) } -/************************************************* - * enable the dedicated function in INAGUA board. - *************************************************/ +/********************************************** + * Enable the dedicated functions of the board. + **********************************************/ static void mainboard_enable(device_t dev) { printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n"); @@ -82,5 +82,5 @@ static void mainboard_enable(device_t dev) } struct chip_operations mainboard_ops = { - .enable_dev = mainboard_enable, + .enable_dev = mainboard_enable, }; |