remoteproc: Update Kconfig setup to 'depends on REMOTEPROC'
authorPeter Griffin <peter.griffin@linaro.org>
Tue, 18 Oct 2016 09:39:08 +0000 (10:39 +0100)
committerVinod Koul <vinod.koul@intel.com>
Tue, 18 Oct 2016 14:42:05 +0000 (20:12 +0530)
commite41ddbc00e79f06fb6cb2e09e6199ca7b557c457
tree6ac018e06923196c25bd0a5e58e77d7676ccea03
parentc9d7cc3e76b7796839b770eec7696d143c9d9806
remoteproc: Update Kconfig setup to 'depends on REMOTEPROC'

Make REMOTEPROC core a selectable kconfig option, and update
remoteproc client drivers to 'depends on' the core. This avoids
some nasty Kconfig recursive dependency issues. Also when using
menuconfig client drivers will be hidden until the core has been
enabled.

Documentation/kbuild/kconfig-language.txt:

  Note:
        select should be used with care. select will force
        a symbol to a value without visiting the dependencies.
        By abusing select you are able to select a symbol FOO even
        if FOO depends on BAR that is not set.
        In general use select only for non-visible symbols
        (no prompts anywhere) and for symbols with no dependencies.
        That will limit the usefulness but on the other hand avoid
        the illegal configurations all over.

Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/remoteproc/Kconfig