[media] mn88473: move out of staging
Move driver to drivers. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
parent
9c91738d49
commit
877ba50b05
@ -7221,10 +7221,8 @@ L: linux-media@vger.kernel.org
|
|||||||
W: https://linuxtv.org
|
W: https://linuxtv.org
|
||||||
W: http://palosaari.fi/linux/
|
W: http://palosaari.fi/linux/
|
||||||
Q: http://patchwork.linuxtv.org/project/linux-media/list/
|
Q: http://patchwork.linuxtv.org/project/linux-media/list/
|
||||||
T: git git://linuxtv.org/anttip/media_tree.git
|
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/staging/media/mn88473/
|
F: drivers/media/dvb-frontends/mn88473*
|
||||||
F: drivers/media/dvb-frontends/mn88473.h
|
|
||||||
|
|
||||||
MODULE SUPPORT
|
MODULE SUPPORT
|
||||||
M: Rusty Russell <rusty@rustcorp.com.au>
|
M: Rusty Russell <rusty@rustcorp.com.au>
|
||||||
|
@ -73,6 +73,14 @@ config DVB_SI2165
|
|||||||
|
|
||||||
Say Y when you want to support this frontend.
|
Say Y when you want to support this frontend.
|
||||||
|
|
||||||
|
config DVB_MN88473
|
||||||
|
tristate "Panasonic MN88473"
|
||||||
|
depends on DVB_CORE && I2C
|
||||||
|
select REGMAP_I2C
|
||||||
|
default m if !MEDIA_SUBDRV_AUTOSELECT
|
||||||
|
help
|
||||||
|
Say Y when you want to support this frontend.
|
||||||
|
|
||||||
comment "DVB-S (satellite) frontends"
|
comment "DVB-S (satellite) frontends"
|
||||||
depends on DVB_CORE
|
depends on DVB_CORE
|
||||||
|
|
||||||
|
@ -95,6 +95,7 @@ obj-$(CONFIG_DVB_STV0900) += stv0900.o
|
|||||||
obj-$(CONFIG_DVB_STV090x) += stv090x.o
|
obj-$(CONFIG_DVB_STV090x) += stv090x.o
|
||||||
obj-$(CONFIG_DVB_STV6110x) += stv6110x.o
|
obj-$(CONFIG_DVB_STV6110x) += stv6110x.o
|
||||||
obj-$(CONFIG_DVB_M88DS3103) += m88ds3103.o
|
obj-$(CONFIG_DVB_M88DS3103) += m88ds3103.o
|
||||||
|
obj-$(CONFIG_DVB_MN88473) += mn88473.o
|
||||||
obj-$(CONFIG_DVB_ISL6423) += isl6423.o
|
obj-$(CONFIG_DVB_ISL6423) += isl6423.o
|
||||||
obj-$(CONFIG_DVB_EC100) += ec100.o
|
obj-$(CONFIG_DVB_EC100) += ec100.o
|
||||||
obj-$(CONFIG_DVB_HD29L2) += hd29l2.o
|
obj-$(CONFIG_DVB_HD29L2) += hd29l2.o
|
||||||
|
@ -27,8 +27,6 @@ source "drivers/staging/media/davinci_vpfe/Kconfig"
|
|||||||
|
|
||||||
source "drivers/staging/media/mn88472/Kconfig"
|
source "drivers/staging/media/mn88472/Kconfig"
|
||||||
|
|
||||||
source "drivers/staging/media/mn88473/Kconfig"
|
|
||||||
|
|
||||||
source "drivers/staging/media/mx2/Kconfig"
|
source "drivers/staging/media/mx2/Kconfig"
|
||||||
|
|
||||||
source "drivers/staging/media/mx3/Kconfig"
|
source "drivers/staging/media/mx3/Kconfig"
|
||||||
|
@ -7,5 +7,4 @@ obj-$(CONFIG_VIDEO_MX3) += mx3/
|
|||||||
obj-$(CONFIG_VIDEO_OMAP1) += omap1/
|
obj-$(CONFIG_VIDEO_OMAP1) += omap1/
|
||||||
obj-$(CONFIG_VIDEO_OMAP4) += omap4iss/
|
obj-$(CONFIG_VIDEO_OMAP4) += omap4iss/
|
||||||
obj-$(CONFIG_DVB_MN88472) += mn88472/
|
obj-$(CONFIG_DVB_MN88472) += mn88472/
|
||||||
obj-$(CONFIG_DVB_MN88473) += mn88473/
|
|
||||||
obj-$(CONFIG_VIDEO_TIMBERDALE) += timb/
|
obj-$(CONFIG_VIDEO_TIMBERDALE) += timb/
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
config DVB_MN88473
|
|
||||||
tristate "Panasonic MN88473"
|
|
||||||
depends on DVB_CORE && I2C
|
|
||||||
select REGMAP_I2C
|
|
||||||
default m if !MEDIA_SUBDRV_AUTOSELECT
|
|
||||||
help
|
|
||||||
Say Y when you want to support this frontend.
|
|
@ -1,5 +0,0 @@
|
|||||||
obj-$(CONFIG_DVB_MN88473) += mn88473.o
|
|
||||||
|
|
||||||
ccflags-y += -Idrivers/media/dvb-core/
|
|
||||||
ccflags-y += -Idrivers/media/dvb-frontends/
|
|
||||||
ccflags-y += -Idrivers/media/tuners/
|
|
@ -1,21 +0,0 @@
|
|||||||
Driver general quality is not good enough for mainline. Also, other
|
|
||||||
device drivers (USB-bridge, tuner) needed for Astrometa receiver in
|
|
||||||
question could need some changes. However, if that driver is mainlined
|
|
||||||
due to some other device than Astrometa, unrelated TODOs could be
|
|
||||||
skipped. In that case rtl28xxu driver needs module parameter to prevent
|
|
||||||
driver loading.
|
|
||||||
|
|
||||||
Required TODOs:
|
|
||||||
* missing lock flags
|
|
||||||
* I2C errors
|
|
||||||
* tuner sensitivity
|
|
||||||
|
|
||||||
*Do not* send any patch fixing checkpatch.pl issues. Currently it passes
|
|
||||||
checkpatch.pl tests. I don't want waste my time to review this kind of
|
|
||||||
trivial stuff. *Do not* add missing register I/O error checks. Those are
|
|
||||||
missing for the reason it is much easier to compare I2C data sniffs when
|
|
||||||
there is less lines. Those error checks are about the last thing to be added.
|
|
||||||
|
|
||||||
Patches should be submitted to:
|
|
||||||
linux-media@vger.kernel.org and Antti Palosaari <crope@iki.fi>
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user