[media] saa7164: bugfix, avoid oops when driver unloads without firmware

Signed-off-by: Steven Toth <stoth@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Steven Toth 2010-09-05 11:24:50 -03:00 committed by Mauro Carvalho Chehab
parent a1c592b766
commit 22760ed39c
3 changed files with 4 additions and 1 deletions

View File

@ -1423,7 +1423,8 @@ static void __devexit saa7164_finidev(struct pci_dev *pci_dev)
kthread_stop(dev->kthread);
dev->kthread = NULL;
}
saa7164_api_set_debug(dev, 0x00);
if (dev->firmwareloaded)
saa7164_api_set_debug(dev, 0x00);
}
saa7164_histogram_print(&dev->ports[ SAA7164_PORT_ENC1 ],

View File

@ -604,6 +604,7 @@ int saa7164_downloadfirmware(struct saa7164_dev *dev)
}
}
dev->firmwareloaded = 1;
ret = 0;
out:

View File

@ -452,6 +452,7 @@ struct saa7164_dev {
/* firmware status */
struct saa7164_fw_status fw_status;
u32 firmwareloaded;
tmComResHWDescr_t hwdesc;
tmComResInterfaceDescr_t intfdesc;