diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-06-04 14:20:11 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 13:23:55 -0400 |
commit | 024cf53089f7c8e58934407f07ca2a7b5bed3b06 (patch) | |
tree | 81074f679f6fbbb74e8b78cd1c2dd9a4dcfff1cb /drivers/media/video/tda9887.c | |
parent | be2b85a13543bbaf1a141b3a54f84c1e3b059e69 (diff) |
V4L/DVB (5742): Tuner: define release callback for mt20xx, tda9887 and tda8290
Define tuner release callbacks for mt20xx, tda9887 and tda8290, so that
these drivers can release their own private structures themselves.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tda9887.c')
-rw-r--r-- | drivers/media/video/tda9887.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/video/tda9887.c b/drivers/media/video/tda9887.c index 01f18b07d013..f0443cc02e5c 100644 --- a/drivers/media/video/tda9887.c +++ b/drivers/media/video/tda9887.c | |||
@@ -591,6 +591,14 @@ static void tda9887_set_freq(struct i2c_client *client, unsigned int freq) | |||
591 | tda9887_configure(client); | 591 | tda9887_configure(client); |
592 | } | 592 | } |
593 | 593 | ||
594 | static void tda9887_release(struct i2c_client *c) | ||
595 | { | ||
596 | struct tuner *t = i2c_get_clientdata(c); | ||
597 | |||
598 | kfree(t->priv); | ||
599 | t->priv = NULL; | ||
600 | } | ||
601 | |||
594 | int tda9887_tuner_init(struct i2c_client *c) | 602 | int tda9887_tuner_init(struct i2c_client *c) |
595 | { | 603 | { |
596 | struct tda9887_priv *priv = NULL; | 604 | struct tda9887_priv *priv = NULL; |
@@ -611,6 +619,7 @@ int tda9887_tuner_init(struct i2c_client *c) | |||
611 | t->standby = tda9887_standby; | 619 | t->standby = tda9887_standby; |
612 | t->tuner_status = tda9887_tuner_status; | 620 | t->tuner_status = tda9887_tuner_status; |
613 | t->get_afc = tda9887_get_afc; | 621 | t->get_afc = tda9887_get_afc; |
622 | t->release = tda9887_release; | ||
614 | 623 | ||
615 | return 0; | 624 | return 0; |
616 | } | 625 | } |