summaryrefslogtreecommitdiff
path: root/drivers/media
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2009-12-09 19:59:26 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-01-14 00:40:52 -0200
commit6662b8a16dd7ab2c0299a0cdc39e860dc3394148 (patch)
tree70d8143ce3b59bee93a18fd427ddcee939796fee /drivers/media
parenta58ebbbc37186168aab079873d48a55a40151023 (diff)
V4L/DVB (13805): Fix: Unregister the frontend before detaching
Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/dvb/mantis/mantis_dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/mantis/mantis_dvb.c b/drivers/media/dvb/mantis/mantis_dvb.c
index 1e08e3107639..54bf4ea9efd7 100644
--- a/drivers/media/dvb/mantis/mantis_dvb.c
+++ b/drivers/media/dvb/mantis/mantis_dvb.c
@@ -281,8 +281,8 @@ int __devexit mantis_dvb_exit(struct mantis_pci *mantis)
err = mantis_frontend_shutdown(mantis);
if (err != 0)
dprintk(MANTIS_ERROR, 1, "Frontend exit while POWER ON! <%d>", err);
- dvb_frontend_detach(mantis->fe);
dvb_unregister_frontend(mantis->fe);
+ dvb_frontend_detach(mantis->fe);
}
tasklet_kill(&mantis->tasklet);