diff options
| author | 2017-03-01 19:10:49 -0800 | |
|---|---|---|
| committer | 2017-03-06 14:02:03 +0100 | |
| commit | 32c2aafcbffe9a5179e13dbaf68fc57b654d64d1 (patch) | |
| tree | e3400d0574e1e130a2b0e64d9bed5e3231964efc | |
| parent | staging: bcm2835-audio: select BCM2835_VCHIQ rather then depending on it. (diff) | |
staging: bcm2835-camera: select BCM2835_VCHIQ rather then depending on it.
Change the camera's dependency on BCM2835_VCHIQ to a select
since camera support is typically more important to people
then base VCHIQ(which they may not even know what it's for).
Also, with a dependency the camera support would not be
visiable until VCHIQ is selected first, and that may
not be what most people would expect.
Signed-off-by: Michael Zoran <mzoran@crowfest.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/vc04_services/bcm2835-camera/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/vc04_services/bcm2835-camera/Kconfig b/drivers/staging/vc04_services/bcm2835-camera/Kconfig index 64be42ef344d..25e534cd3fd1 100644 --- a/drivers/staging/vc04_services/bcm2835-camera/Kconfig +++ b/drivers/staging/vc04_services/bcm2835-camera/Kconfig @@ -2,8 +2,8 @@ config VIDEO_BCM2835 tristate "BCM2835 Camera" depends on MEDIA_SUPPORT depends on VIDEO_V4L2 && (ARCH_BCM2835 || COMPILE_TEST) - depends on BCM2835_VCHIQ depends on ARM + select BCM2835_VCHIQ select VIDEOBUF2_VMALLOC help Say Y here to enable camera host interface devices for |
