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>
This commit is contained in:
parent
37ef52d44b
commit
5e70766f14
|
@ -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,
|
||||
};
|
||||
|
|
|
@ -50,9 +50,9 @@ void set_pcie_dereset(void)
|
|||
}
|
||||
|
||||
|
||||
/*************************************************
|
||||
* enable the dedicated function in persimmon 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");
|
||||
|
|
|
@ -244,7 +244,7 @@ static const CODECENTRY persimmon_codec_alc269[] =
|
|||
{0xff, 0xffffffff} /* end of table */
|
||||
};
|
||||
|
||||
static const CODECTBLLIST persimmon_codec_tablelist[] =
|
||||
static const CODECTBLLIST codec_tablelist[] =
|
||||
{
|
||||
{0x010ec0269, (CODECENTRY*)&persimmon_codec_alc269[0]},
|
||||
{0x0FFFFFFFFUL, (CODECENTRY*)0x0FFFFFFFFUL}
|
||||
|
@ -254,7 +254,7 @@ static const CODECTBLLIST persimmon_codec_tablelist[] =
|
|||
* @def AZALIA_OEM_VERB_TABLE
|
||||
* Mainboard specific cocec verb table list
|
||||
*/
|
||||
#define AZALIA_OEM_VERB_TABLE (&persimmon_codec_tablelist[0])
|
||||
#define AZALIA_OEM_VERB_TABLE (&codec_tablelist[0])
|
||||
|
||||
/* set up an ACPI prefered power management profile */
|
||||
/* from acpi.h
|
||||
|
|
|
@ -73,9 +73,9 @@ static void southstation_led_init(void)
|
|||
}
|
||||
|
||||
|
||||
/*************************************************
|
||||
* enable the dedicated function in southstation 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");
|
||||
|
|
|
@ -46,9 +46,9 @@ void set_pcie_dereset(void)
|
|||
}
|
||||
|
||||
|
||||
/*************************************************
|
||||
* enable the dedicated function in unionstation 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");
|
||||
|
|
|
@ -45,9 +45,9 @@ void set_pcie_dereset(void)
|
|||
}
|
||||
|
||||
|
||||
/*************************************************
|
||||
* enable the dedicated function in e350m1 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");
|
||||
|
|
Loading…
Reference in New Issue