diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-05-02 03:41:56 +1000 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-05-02 12:07:26 +0200 |
commit | dbadb0a8271974915f4c94113509277dd9cc10b2 (patch) | |
tree | 2a4694b6fa5ad207d9dead66ba6866976d18612c /src/mainboard/jetway/nf81-t56n-lf/mptable.c | |
parent | 0bb0affede3e93a9dee09d04c0793abaa53d2f64 (diff) | |
download | coreboot-dbadb0a8271974915f4c94113509277dd9cc10b2.tar.xz |
jetway/nf81-t56n-lf: Set OEM to Jetway in DSDT and mptables
Jetway builds this hardware, so let us be sure to set the truth in the
DSDT Definition block and MPTables.
Change-Id: I2dfb89152aa3b895ec6975293c5a5998ab6b52bd
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5630
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/jetway/nf81-t56n-lf/mptable.c')
-rw-r--r-- | src/mainboard/jetway/nf81-t56n-lf/mptable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/mptable.c b/src/mainboard/jetway/nf81-t56n-lf/mptable.c index 7a0872620a..9be4854348 100644 --- a/src/mainboard/jetway/nf81-t56n-lf/mptable.c +++ b/src/mainboard/jetway/nf81-t56n-lf/mptable.c @@ -53,7 +53,7 @@ static void *smp_write_config_table(void *v) mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN); mptable_init(mc, LOCAL_APIC_ADDR); - memcpy(mc->mpc_oem, "AMD ", 8); + memcpy(mc->mpc_oem, "JETWAY ", 8); smp_write_processors(mc); |