aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2009-04-06 17:57:55 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-04-06 20:44:52 -0400
commit82bea2020fad535dbd4b1466595c8c9ae23b4943 (patch)
tree502d2fc6f84b5e09229c17d7dc1fe07bec087f64 /drivers/media
parent2aa93bc1bcd8ec61416a59e6bec1225021b30e22 (diff)
V4L/DVB (11439): UVC: uvc_status_cleanup(): undefined reference to `input_unregister_device'
Fix build errors when USB_VIDEO_CLASS=y and INPUT=m. Fixes kernel bugzilla #12671. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Laurent Pinchart <laurent.pinchart@skynet.be> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/uvc/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/uvc/Kconfig b/drivers/media/video/uvc/Kconfig
index c2d9760de832..2956a7637219 100644
--- a/drivers/media/video/uvc/Kconfig
+++ b/drivers/media/video/uvc/Kconfig
@@ -9,7 +9,7 @@ config USB_VIDEO_CLASS
9config USB_VIDEO_CLASS_INPUT_EVDEV 9config USB_VIDEO_CLASS_INPUT_EVDEV
10 bool "UVC input events device support" 10 bool "UVC input events device support"
11 default y 11 default y
12 depends on USB_VIDEO_CLASS && INPUT 12 depends on USB_VIDEO_CLASS=INPUT || INPUT=y
13 ---help--- 13 ---help---
14 This option makes USB Video Class devices register an input device 14 This option makes USB Video Class devices register an input device
15 to report button events. 15 to report button events.