diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2007-04-22 00:17:49 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2007-04-22 00:17:49 +0200 |
commit | 8b01f07ad9972aa5fe69c56cb048f44e4a5f3c87 (patch) | |
tree | 37b5027e354b7925b2f9f39d47f396288ee4af82 /linux/drivers/media/dvb/frontends/tda10021.h | |
parent | 7165cbfe26e73c882aa6f44047123cad0110967d (diff) | |
download | mediapointer-dvb-s2-8b01f07ad9972aa5fe69c56cb048f44e4a5f3c87.tar.gz mediapointer-dvb-s2-8b01f07ad9972aa5fe69c56cb048f44e4a5f3c87.tar.bz2 |
budget-av: Remove polarity switching of the clock for the DVB-C cards
From: Hartmut Birr <e9hack@googlemail.com>
Remove the polarity switching of the clock for the DVB-C cards in
budget-av.c. This hack is no longer necessary because the saa7146 can
do the job to remove the additional FEC bytes from the TS.
Signed-off-by: Hartmut Birr <e9hack@googlemail.com>
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda10021.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda10021.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda10021.h b/linux/drivers/media/dvb/frontends/tda10021.h index e3da78010..b8efd498d 100644 --- a/linux/drivers/media/dvb/frontends/tda10021.h +++ b/linux/drivers/media/dvb/frontends/tda10021.h @@ -44,12 +44,4 @@ static inline struct dvb_frontend* tda10021_attach(const struct tda10021_config* } #endif // CONFIG_DVB_TDA10021 -static inline int tda10021_writereg(struct dvb_frontend *fe, u8 reg, u8 val) { - int r = 0; - u8 buf[] = {reg, val}; - if (fe->ops.write) - r = fe->ops.write(fe, buf, 2); - return r; -} - #endif // TDA10021_H |