diff options
author | Richard Weinberger <richard@nod.at> | 2016-01-25 23:24:09 +0100 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2016-02-02 16:47:14 +0530 |
commit | 65d3b04a814679a31fe4d5edd19d89dd5b94fd40 (patch) | |
tree | a34176c5d1f1bef6b913d4c37fe99ad6daebfdbe /drivers/mailbox | |
parent | e9c8dc8ba96b165ae72daad3b1f27823c3aee628 (diff) | |
download | linux-65d3b04a814679a31fe4d5edd19d89dd5b94fd40.tar.bz2 |
mailbox: Fix dependencies for !HAS_IOMEM archs
Not every arch has io memory.
So, unbreak the build by fixing the dependencies.
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r-- | drivers/mailbox/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig index 546d05f4358a..b2bbe8659bed 100644 --- a/drivers/mailbox/Kconfig +++ b/drivers/mailbox/Kconfig @@ -81,6 +81,7 @@ config STI_MBOX config MAILBOX_TEST tristate "Mailbox Test Client" depends on OF + depends on HAS_IOMEM help Test client to help with testing new Controller driver implementations. |