mb/intel/minnow3: drop unneeded call to lpc_configure_pads
The LPC/eSPI pad configuration is already done at board-level. Thus, drop redundant configuration by dropping the call to lpc_configure_pads. Change-Id: Ib9e62bf19e6f1fbe32a340e4802c13504a0d6def Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49417 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
f9544da6c4
commit
186c0eb27e
|
@ -1,7 +1,6 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#include <bootblock_common.h>
|
||||
#include <intelblocks/lpc_lib.h>
|
||||
#include "gpio.h"
|
||||
|
||||
void bootblock_mainboard_init(void)
|
||||
|
@ -9,8 +8,6 @@ void bootblock_mainboard_init(void)
|
|||
const struct pad_config *pads;
|
||||
size_t num;
|
||||
|
||||
lpc_configure_pads();
|
||||
|
||||
/* Configure GPIOs needed prior to ramstage. */
|
||||
pads = early_gpio_table(&num);
|
||||
gpio_configure_pads(pads, num);
|
||||
|
|
Loading…
Reference in New Issue