OSDN Git Service

media: cx231xx: fix RC_CORE dependency
authorArnd Bergmann <arnd@arndb.de>
Fri, 25 May 2018 15:25:10 +0000 (11:25 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Wed, 27 Jun 2018 14:45:15 +0000 (10:45 -0400)
With CONFIG_RC_CORE=m and VIDEO_CX231XX=y, we get a link failure:

drivers/media/usb/cx231xx/cx231xx-input.o: In function `cx231xx_ir_init':
cx231xx-input.c:(.text+0xd4): undefined reference to `rc_allocate_device'

This narrows down the dependency so that only valid configurations
are allowed.

Fixes: 84545d2a1436 ("media: cx231xx: Remove RC_CORE dependency")

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/usb/cx231xx/Kconfig

index 0f13192..9e5b3e7 100644 (file)
@@ -15,7 +15,7 @@ config VIDEO_CX231XX
 
 config VIDEO_CX231XX_RC
        bool "Conexant cx231xx Remote Controller additional support"
-       depends on RC_CORE
+       depends on RC_CORE=y || RC_CORE=VIDEO_CX231XX
        depends on VIDEO_CX231XX
        default y
        ---help---