Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1317959
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 7/7] [media] go7007: add MEDIA_CAMERA_SUPPORT dependency |
| Date | 2016-01-26 15:20 +0100 |
| Message-ID | <qVcDo-5i7-29@gated-at.bofh.it> (permalink) |
| References | <qVcDn-5i7-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
If MEDIA_SUBDRV_AUTOSELECT and VIDEO_GO7007 are both set, we automatically select VIDEO_OV7640, but that depends on MEDIA_CAMERA_SUPPORT, so we get a Kconfig warning if that is disabled: warning: (VIDEO_GO7007) selects VIDEO_OV7640 which has unmet direct dependencies (MEDIA_SUPPORT && I2C && VIDEO_V4L2 && MEDIA_CAMERA_SUPPORT) This adds another dependency so we don't accidentally select it when it is unavailable. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- drivers/media/usb/go7007/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/usb/go7007/Kconfig b/drivers/media/usb/go7007/Kconfig index 95a3af644a92..af1d02430931 100644 --- a/drivers/media/usb/go7007/Kconfig +++ b/drivers/media/usb/go7007/Kconfig @@ -11,7 +11,7 @@ config VIDEO_GO7007 select VIDEO_TW2804 if MEDIA_SUBDRV_AUTOSELECT select VIDEO_TW9903 if MEDIA_SUBDRV_AUTOSELECT select VIDEO_TW9906 if MEDIA_SUBDRV_AUTOSELECT - select VIDEO_OV7640 if MEDIA_SUBDRV_AUTOSELECT + select VIDEO_OV7640 if MEDIA_SUBDRV_AUTOSELECT && MEDIA_CAMERA_SUPPORT select VIDEO_UDA1342 if MEDIA_SUBDRV_AUTOSELECT ---help--- This is a video4linux driver for the WIS GO7007 MPEG -- 2.7.0
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/7] [media] pwc: hide unused label Arnd Bergmann <arnd@arndb.de> - 2016-01-26 15:20 +0100
[PATCH 7/7] [media] go7007: add MEDIA_CAMERA_SUPPORT dependency Arnd Bergmann <arnd@arndb.de> - 2016-01-26 15:20 +0100
Re: [PATCH 7/7] [media] go7007: add MEDIA_CAMERA_SUPPORT dependency Mauro Carvalho Chehab <mchehab@osg.samsung.com> - 2016-01-26 16:10 +0100
Re: [PATCH 7/7] [media] go7007: add MEDIA_CAMERA_SUPPORT dependency Mauro Carvalho Chehab <mchehab@osg.samsung.com> - 2016-01-26 16:50 +0100
Re: [PATCH 1/7] [media] pwc: hide unused label Arnd Bergmann <arnd@arndb.de> - 2016-01-26 16:40 +0100
csiph-web