Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1c50f24 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] btcx-risc: move from media/i2c to media/common



The btcx-risc module is a helper module for bttv/conexant based TV cards.
It isn't an i2c module at all, instead it should be in common since it is
used by 4 pci drivers.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 62595820
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -8,6 +8,10 @@ comment "common driver options"
config VIDEO_CX2341X
	tristate

config VIDEO_BTCX
	depends on PCI
	tristate

source "drivers/media/common/b2c2/Kconfig"
source "drivers/media/common/saa7146/Kconfig"
source "drivers/media/common/siano/Kconfig"
+1 −0
Original line number Diff line number Diff line
obj-y += b2c2/ saa7146/ siano/
obj-$(CONFIG_VIDEO_CX2341X) += cx2341x.o
obj-$(CONFIG_VIDEO_BTCX)  += btcx-risc.o
+0 −4
Original line number Diff line number Diff line
@@ -2,10 +2,6 @@
# Generic video config states
#

config VIDEO_BTCX
	depends on PCI
	tristate

config VIDEO_TVEEPROM
	tristate
	depends on I2C
Loading