diff options
author | Lokesh Vutla | 2018-08-27 15:57:49 +0530 |
---|---|---|
committer | Tom Rini | 2018-09-11 08:32:55 -0400 |
commit | 880274192cfdcec83b32b15ae47e7cbfc2edc1df (patch) | |
tree | a5ef8b51607c02d89b4ad6b411223198f4a09988 /drivers | |
parent | f9aa41023bd9f684d5d2ad8385efbb92a39b3c07 (diff) |
spl: Allow mailbox drivers to be used within SPL
Add an option for building mailbox drivers within SPL.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/Makefile | 1 | ||||
-rw-r--r-- | drivers/mailbox/Makefile | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index d296354b3c0..c0124765db4 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -14,6 +14,7 @@ obj-$(CONFIG_$(SPL_TPL_)SERIAL_SUPPORT) += serial/ obj-$(CONFIG_$(SPL_TPL_)SPI_FLASH_SUPPORT) += mtd/spi/ obj-$(CONFIG_$(SPL_TPL_)SPI_SUPPORT) += spi/ obj-$(CONFIG_$(SPL_TPL_)TIMER) += timer/ +obj-$(CONFIG_$(SPL_)DM_MAILBOX) += mailbox/ ifndef CONFIG_TPL_BUILD ifdef CONFIG_SPL_BUILD diff --git a/drivers/mailbox/Makefile b/drivers/mailbox/Makefile index 4ac85d412f3..243ff6f3cea 100644 --- a/drivers/mailbox/Makefile +++ b/drivers/mailbox/Makefile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: GPL-2.0 -obj-$(CONFIG_DM_MAILBOX) += mailbox-uclass.o +obj-$(CONFIG_$(SPL_)DM_MAILBOX) += mailbox-uclass.o obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox.o obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox-test.o obj-$(CONFIG_TEGRA_HSP) += tegra-hsp.o |