diff options
author | Ohad Ben-Cohen <ohad@wizery.com> | 2011-12-21 11:25:43 +0200 |
---|---|---|
committer | Ohad Ben-Cohen <ohad@wizery.com> | 2012-02-22 18:28:34 +0200 |
commit | 489d129a2f7abd04054fad44e589989f3fa7fd7c (patch) | |
tree | bb43699a919483be495e3a5532a8c38697b76ddb /drivers/remoteproc/Kconfig | |
parent | f8289edae45496477803786c90994d5e072ca66a (diff) | |
download | blackbird-obmc-linux-489d129a2f7abd04054fad44e589989f3fa7fd7c.tar.gz blackbird-obmc-linux-489d129a2f7abd04054fad44e589989f3fa7fd7c.zip |
remoteproc: depend on EXPERIMENTAL
Remoteproc is still under development and as it gets traction we
definitely expect to do some changes in the binary format (most probably
only in the resource table, e.g. the upcoming move to TLV-based entries).
Active testing and use of remoteproc is most welcome, but we don't want
users to expect backward binary compatibility with the preliminary
images we have today.
Therefore mark remoteproc as EXPERIMENTAL, and explicitly inform the user
about this when a new remote processor is registered.
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Stephen Boyd <sboyd@codeaurora.org>
Cc: Rob Clark <rob@ti.com>
Cc: Mark Grosen <mgrosen@ti.com>
Cc: Ludovic BARRE <ludovic.barre@stericsson.com>
Diffstat (limited to 'drivers/remoteproc/Kconfig')
-rw-r--r-- | drivers/remoteproc/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/remoteproc/Kconfig b/drivers/remoteproc/Kconfig index 00fb72faf778..25fc4ccbc2ea 100644 --- a/drivers/remoteproc/Kconfig +++ b/drivers/remoteproc/Kconfig @@ -1,8 +1,9 @@ -menu "Remoteproc drivers" +menu "Remoteproc drivers (EXPERIMENTAL)" # REMOTEPROC gets selected by whoever wants it config REMOTEPROC tristate + depends on EXPERIMENTAL config OMAP_REMOTEPROC tristate "OMAP remoteproc support" |