diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-06-04 13:40:27 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 13:23:54 -0400 |
commit | be2b85a13543bbaf1a141b3a54f84c1e3b059e69 (patch) | |
tree | 9f44d2aa513237b5baab578a51f66a4d2e731b6c /drivers/media | |
parent | 9ee476a56c3ee119a02b6823659f5698b1241f04 (diff) |
V4L/DVB (5741): Tuner: add release callback
Individual tuner drivers are now allocating memory themselves for
their own private data structures. This changeset adds a release
callback to the tuner operations, so that newer drivers that may
require more complex data structures may release this private data
themselves.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/tuner-core.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/video/tuner-core.c b/drivers/media/video/tuner-core.c index 4369f6d12499..0e71a22f1d4f 100644 --- a/drivers/media/video/tuner-core.c +++ b/drivers/media/video/tuner-core.c | |||
@@ -178,8 +178,11 @@ static void set_type(struct i2c_client *c, unsigned int type, | |||
178 | } | 178 | } |
179 | 179 | ||
180 | /* discard private data, in case set_type() was previously called */ | 180 | /* discard private data, in case set_type() was previously called */ |
181 | if (t->release) | ||
182 | t->release(c); | ||
181 | kfree(t->priv); | 183 | kfree(t->priv); |
182 | t->priv = NULL; | 184 | t->priv = NULL; |
185 | |||
183 | switch (t->type) { | 186 | switch (t->type) { |
184 | case TUNER_MT2032: | 187 | case TUNER_MT2032: |
185 | microtune_init(c); | 188 | microtune_init(c); |
@@ -561,6 +564,8 @@ static int tuner_detach(struct i2c_client *client) | |||
561 | return err; | 564 | return err; |
562 | } | 565 | } |
563 | 566 | ||
567 | if (t->release) | ||
568 | t->release(client); | ||
564 | kfree(t->priv); | 569 | kfree(t->priv); |
565 | kfree(t); | 570 | kfree(t); |
566 | return 0; | 571 | return 0; |