Commit 38611529 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] MAINTAINERS: remove hd29l2

Remove unused demod driver. Device that used it never went public.

If someone later decide to add support for a device using this
chipset, it should be easy enough to retrieve it from git
history.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent e11415c8
...@@ -5724,16 +5724,6 @@ L: linux-parisc@vger.kernel.org ...@@ -5724,16 +5724,6 @@ L: linux-parisc@vger.kernel.org
S: Maintained S: Maintained
F: sound/parisc/harmony.* F: sound/parisc/harmony.*
HD29L2 MEDIA DRIVER
M: Antti Palosaari <crope@iki.fi>
L: linux-media@vger.kernel.org
W: https://linuxtv.org
W: http://palosaari.fi/linux/
Q: http://patchwork.linuxtv.org/project/linux-media/list/
T: git git://linuxtv.org/anttip/media_tree.git
S: Maintained
F: drivers/media/dvb-frontends/hd29l2*
HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
M: Jimmy Vance <jimmy.vance@hpe.com> M: Jimmy Vance <jimmy.vance@hpe.com>
S: Supported S: Supported
......
...@@ -447,13 +447,6 @@ config DVB_EC100 ...@@ -447,13 +447,6 @@ config DVB_EC100
help help
Say Y when you want to support this frontend. Say Y when you want to support this frontend.
config DVB_HD29L2
tristate "HDIC HD29L2"
depends on DVB_CORE && I2C
default m if !MEDIA_SUBDRV_AUTOSELECT
help
Say Y when you want to support this frontend.
config DVB_STV0367 config DVB_STV0367
tristate "ST STV0367 based" tristate "ST STV0367 based"
depends on DVB_CORE && I2C depends on DVB_CORE && I2C
......
...@@ -99,7 +99,6 @@ obj-$(CONFIG_DVB_MN88472) += mn88472.o ...@@ -99,7 +99,6 @@ obj-$(CONFIG_DVB_MN88472) += mn88472.o
obj-$(CONFIG_DVB_MN88473) += mn88473.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_DS3000) += ds3000.o obj-$(CONFIG_DVB_DS3000) += ds3000.o
obj-$(CONFIG_DVB_TS2020) += ts2020.o obj-$(CONFIG_DVB_TS2020) += ts2020.o
obj-$(CONFIG_DVB_MB86A16) += mb86a16.o obj-$(CONFIG_DVB_MB86A16) += mb86a16.o
......
This diff is collapsed.
/*
* HDIC HD29L2 DMB-TH demodulator driver
*
* Copyright (C) 2011 Metropolia University of Applied Sciences, Electria R&D
*
* Author: Antti Palosaari <crope@iki.fi>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef HD29L2_H
#define HD29L2_H
#include <linux/dvb/frontend.h>
struct hd29l2_config {
/*
* demodulator I2C address
*/
u8 i2c_addr;
/*
* tuner I2C address
* only needed when tuner is behind demod I2C-gate
*/
u8 tuner_i2c_addr;
/*
* TS settings
*/
#define HD29L2_TS_SERIAL 0x00
#define HD29L2_TS_PARALLEL 0x80
#define HD29L2_TS_CLK_NORMAL 0x40
#define HD29L2_TS_CLK_INVERTED 0x00
#define HD29L2_TS_CLK_GATED 0x20
#define HD29L2_TS_CLK_FREE 0x00
u8 ts_mode;
};
#if IS_REACHABLE(CONFIG_DVB_HD29L2)
extern struct dvb_frontend *hd29l2_attach(const struct hd29l2_config *config,
struct i2c_adapter *i2c);
#else
static inline struct dvb_frontend *hd29l2_attach(
const struct hd29l2_config *config, struct i2c_adapter *i2c)
{
pr_warn("%s: driver disabled by Kconfig\n", __func__);
return NULL;
}
#endif
#endif /* HD29L2_H */
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment