diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-09-23 18:52:36 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-10-19 11:24:19 +0000 |
commit | e097585fdfa30bb8d7cafaf3ca42b1cbacd11bf0 (patch) | |
tree | d7016d85ff0632b157065ddddc809d2df7f0984c /src/mainboard/elmex | |
parent | 9fee35c6c4aafd0f8c429263e24a7378dc138f02 (diff) |
AGESA f14: Fix DDI maps in OemCustomize.c
Creates identical object files.
Change-Id: Ie8adb21a753cee6a72dae5eeb64a255e6ead2fe7
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/21652
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Diffstat (limited to 'src/mainboard/elmex')
-rw-r--r-- | src/mainboard/elmex/pcm205400/OemCustomize.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/elmex/pcm205400/OemCustomize.c b/src/mainboard/elmex/pcm205400/OemCustomize.c index 6cc52e8a86..f8a26132ba 100644 --- a/src/mainboard/elmex/pcm205400/OemCustomize.c +++ b/src/mainboard/elmex/pcm205400/OemCustomize.c @@ -76,15 +76,13 @@ static const PCIe_DDI_DESCRIPTOR DdiList[] = { { 0, PCIE_ENGINE_DATA_INITIALIZER(PcieDdiEngine, 8, 11), - //PCIE_DDI_DATA_INITIALIZER(ConnectorTypeDP, Aux1, Hdp1) - {ConnectorTypeLvds, Aux1, Hdp1} + PCIE_DDI_DATA_INITIALIZER(ConnectorTypeLvds, Aux1, Hdp1) }, // Initialize Ddi descriptor (DDI interface Lanes 12:15, DdB, ...) { DESCRIPTOR_TERMINATE_LIST, PCIE_ENGINE_DATA_INITIALIZER(PcieDdiEngine, 12, 15), - //PCIE_DDI_DATA_INITIALIZER(ConnectorTypeDP, Aux2, Hdp2) - {ConnectorTypeDP, Aux2, Hdp2} + PCIE_DDI_DATA_INITIALIZER(ConnectorTypeDP, Aux2, Hdp2) } }; |