aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/au0828/au0828-dvb.c
diff options
context:
space:
mode:
authorSteven Toth <stoth@hauppauge.com>2008-04-02 00:10:40 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:09:43 -0400
commit9c26de555dd3c2cb9833b4d324150aa6b5547b91 (patch)
tree0a4a3ad4be8627c369a4e27921567942a6d0d519 /drivers/media/video/au0828/au0828-dvb.c
parentc32d4d7510ae4da4e83bbd6e6471b04e9c9108ea (diff)
V4L/DVB (7624): Avoid an oops if the board is not fully defined
Avoid an oops if the board is not fully defined. Signed-off-by: Steven Toth <stoth@hauppauge.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/au0828/au0828-dvb.c')
-rw-r--r--drivers/media/video/au0828/au0828-dvb.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/video/au0828/au0828-dvb.c b/drivers/media/video/au0828/au0828-dvb.c
index 3c8a29eafc2d..ecc08a8e31ca 100644
--- a/drivers/media/video/au0828/au0828-dvb.c
+++ b/drivers/media/video/au0828/au0828-dvb.c
@@ -57,6 +57,9 @@ static void urb_completion(struct urb *purb)
57 struct au0828_dev *dev = purb->context; 57 struct au0828_dev *dev = purb->context;
58 int ptype = usb_pipetype(purb->pipe); 58 int ptype = usb_pipetype(purb->pipe);
59 59
60 if (!dev)
61 return;
62
60 if (dev->urb_streaming == 0) 63 if (dev->urb_streaming == 0)
61 return; 64 return;
62 65
@@ -310,6 +313,9 @@ void au0828_dvb_unregister(struct au0828_dev *dev)
310{ 313{
311 struct au0828_dvb *dvb = &dev->dvb; 314 struct au0828_dvb *dvb = &dev->dvb;
312 315
316 if(dvb->frontend == NULL)
317 return;
318
313 dvb_net_release(&dvb->net); 319 dvb_net_release(&dvb->net);
314 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem); 320 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
315 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw); 321 dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);