diff options
author | Andrew de Quincey <adq_dvb@lidskialf.net> | 2006-08-08 08:10:08 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-09-26 10:53:24 -0400 |
commit | c10d14d62d7b7596fd5c7bb8aad3f2b56f8640e6 (patch) | |
tree | f66723500fbc0414742f14411cd64dd6d9a336a0 /drivers/media/dvb/frontends/zl10353.c | |
parent | 13fef9335f4fe2a73e1733f8807e69711736faef (diff) |
V4L/DVB (4384): Remove remaining static function calls
Rewrote _write() calls to use write() op.
Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Acked-by: Michael Krufky <mkrufky@linuxtv.org>
Acked-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/zl10353.c')
-rw-r--r-- | drivers/media/dvb/frontends/zl10353.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/zl10353.c b/drivers/media/dvb/frontends/zl10353.c index 2b95e8b6cd39..953fb55d87b6 100644 --- a/drivers/media/dvb/frontends/zl10353.c +++ b/drivers/media/dvb/frontends/zl10353.c | |||
@@ -258,7 +258,6 @@ static int zl10353_init(struct dvb_frontend *fe) | |||
258 | static void zl10353_release(struct dvb_frontend *fe) | 258 | static void zl10353_release(struct dvb_frontend *fe) |
259 | { | 259 | { |
260 | struct zl10353_state *state = fe->demodulator_priv; | 260 | struct zl10353_state *state = fe->demodulator_priv; |
261 | |||
262 | kfree(state); | 261 | kfree(state); |
263 | } | 262 | } |
264 | 263 | ||
@@ -314,6 +313,7 @@ static struct dvb_frontend_ops zl10353_ops = { | |||
314 | 313 | ||
315 | .init = zl10353_init, | 314 | .init = zl10353_init, |
316 | .sleep = zl10353_sleep, | 315 | .sleep = zl10353_sleep, |
316 | .write = zl10353_write, | ||
317 | 317 | ||
318 | .set_frontend = zl10353_set_parameters, | 318 | .set_frontend = zl10353_set_parameters, |
319 | .get_tune_settings = zl10353_get_tune_settings, | 319 | .get_tune_settings = zl10353_get_tune_settings, |
@@ -330,4 +330,3 @@ MODULE_AUTHOR("Chris Pascoe"); | |||
330 | MODULE_LICENSE("GPL"); | 330 | MODULE_LICENSE("GPL"); |
331 | 331 | ||
332 | EXPORT_SYMBOL(zl10353_attach); | 332 | EXPORT_SYMBOL(zl10353_attach); |
333 | EXPORT_SYMBOL(zl10353_write); | ||