12beaea5e2
There's no need to place a single-line function in its own compilation unit, and then guard it behind a Kconfig symbol. This also allows using this function in stages other than ramstage. Change-Id: I103a4ea4cef24844d382854c9358bbb37d229e04 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42130 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
14 lines
675 B
Makefile
14 lines
675 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
## include generic nuvoton pre-ram stage driver
|
|
bootblock-$(CONFIG_SUPERIO_NUVOTON_COMMON_PRE_RAM) += common/early_serial.c
|
|
romstage-$(CONFIG_SUPERIO_NUVOTON_COMMON_PRE_RAM) += common/early_serial.c
|
|
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_WPCM450) += wpcm450
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT5104D) += nct5104d
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT5539D) += nct5539d
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT5572D) += nct5572d
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT6776) += nct6776
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT6779D) += nct6779d
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NCT6791D) += nct6791d
|
|
subdirs-$(CONFIG_SUPERIO_NUVOTON_NPCD378) += npcd378
|