diff options
Diffstat (limited to 'src/soc/qualcomm/sdm845/Makefile.inc')
-rw-r--r-- | src/soc/qualcomm/sdm845/Makefile.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/soc/qualcomm/sdm845/Makefile.inc b/src/soc/qualcomm/sdm845/Makefile.inc index fc8edd56e3..896ae58e5f 100644 --- a/src/soc/qualcomm/sdm845/Makefile.inc +++ b/src/soc/qualcomm/sdm845/Makefile.inc @@ -7,14 +7,15 @@ bootblock-y += spi.c bootblock-y += mmu.c bootblock-y += timer.c bootblock-y += gpio.c -bootblock-$(CONFIG_DRIVERS_UART) += uart_bitbang.c bootblock-y += clock.c +bootblock-$(CONFIG_SDM845_QSPI) += qspi.c ################################################################################ verstage-y += spi.c verstage-y += timer.c verstage-y += gpio.c verstage-y += clock.c +verstage-$(CONFIG_SDM845_QSPI) += qspi.c ################################################################################ romstage-y += spi.c @@ -22,6 +23,7 @@ romstage-y += cbmem.c romstage-y += timer.c romstage-y += gpio.c romstage-y += clock.c +romstage-$(CONFIG_SDM845_QSPI) += qspi.c ################################################################################ ramstage-y += soc.c @@ -30,6 +32,7 @@ ramstage-y += cbmem.c ramstage-y += timer.c ramstage-y += gpio.c ramstage-y += clock.c +ramstage-$(CONFIG_SDM845_QSPI) += qspi.c ################################################################################ |