diff options
author | Richard Weinberger <richard@nod.at> | 2016-01-25 17:24:09 -0500 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2016-02-02 06:17:14 -0500 |
commit | 65d3b04a814679a31fe4d5edd19d89dd5b94fd40 (patch) | |
tree | a34176c5d1f1bef6b913d4c37fe99ad6daebfdbe | |
parent | e9c8dc8ba96b165ae72daad3b1f27823c3aee628 (diff) |
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>
-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 | |||
81 | config MAILBOX_TEST | 81 | config MAILBOX_TEST |
82 | tristate "Mailbox Test Client" | 82 | tristate "Mailbox Test Client" |
83 | depends on OF | 83 | depends on OF |
84 | depends on HAS_IOMEM | ||
84 | help | 85 | help |
85 | Test client to help with testing new Controller driver | 86 | Test client to help with testing new Controller driver |
86 | implementations. | 87 | implementations. |