diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-05-31 22:34:24 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-06-02 11:17:03 +0200 |
commit | b998a59f82f1152605eae4f7617778020549e81a (patch) | |
tree | a9a605329416d62c22a91e5c2697e636085ff36d /drivers/media/dvb-frontends/sp8870.h | |
parent | 989cf18ed08f8b6efd1d1592d1d0108fa09b98f5 (diff) | |
download | linux-stable-b998a59f82f1152605eae4f7617778020549e81a.tar.gz linux-stable-b998a59f82f1152605eae4f7617778020549e81a.tar.bz2 linux-stable-b998a59f82f1152605eae4f7617778020549e81a.zip |
media: sp8870: move it to staging
This driver is used only by av7110, which is preparing for
its retirement. So, move this ancillary driver to stay together
with av7110.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/dvb-frontends/sp8870.h')
-rw-r--r-- | drivers/media/dvb-frontends/sp8870.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/drivers/media/dvb-frontends/sp8870.h b/drivers/media/dvb-frontends/sp8870.h deleted file mode 100644 index 5eacf39f425e..000000000000 --- a/drivers/media/dvb-frontends/sp8870.h +++ /dev/null @@ -1,37 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-or-later */ -/* - Driver for Spase SP8870 demodulator - - Copyright (C) 1999 Juergen Peitz - - -*/ - -#ifndef SP8870_H -#define SP8870_H - -#include <linux/dvb/frontend.h> -#include <linux/firmware.h> - -struct sp8870_config -{ - /* the demodulator's i2c address */ - u8 demod_address; - - /* request firmware for device */ - int (*request_firmware)(struct dvb_frontend* fe, const struct firmware **fw, char* name); -}; - -#if IS_REACHABLE(CONFIG_DVB_SP8870) -extern struct dvb_frontend* sp8870_attach(const struct sp8870_config* config, - struct i2c_adapter* i2c); -#else -static inline struct dvb_frontend* sp8870_attach(const struct sp8870_config* config, - struct i2c_adapter* i2c) -{ - printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); - return NULL; -} -#endif // CONFIG_DVB_SP8870 - -#endif // SP8870_H |