diff options
| -rw-r--r-- | drivers/media/video/zr36120.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/video/zr36120.c b/drivers/media/video/zr36120.c index 50437383ed62..9240638a0134 100644 --- a/drivers/media/video/zr36120.c +++ b/drivers/media/video/zr36120.c | |||
| @@ -987,6 +987,8 @@ int zoran_ioctl(struct video_device* dev, unsigned int cmd, void *arg) | |||
| 987 | VID_TYPE_SCALES; | 987 | VID_TYPE_SCALES; |
| 988 | if (ztv->have_tuner) | 988 | if (ztv->have_tuner) |
| 989 | c.type |= VID_TYPE_TUNER; | 989 | c.type |= VID_TYPE_TUNER; |
| 990 | if (pci_problems & (PCIPCI_FAIL|PCIAGP_FAIL)) | ||
| 991 | c.type &= ~VID_TYPE_OVERLAY; | ||
| 990 | if (ztv->have_decoder) { | 992 | if (ztv->have_decoder) { |
| 991 | c.channels = ztv->card->video_inputs; | 993 | c.channels = ztv->card->video_inputs; |
| 992 | c.audios = ztv->card->audio_inputs; | 994 | c.audios = ztv->card->audio_inputs; |
| @@ -1284,6 +1286,8 @@ int zoran_ioctl(struct video_device* dev, unsigned int cmd, void *arg) | |||
| 1284 | struct video_buffer v; | 1286 | struct video_buffer v; |
| 1285 | if(!capable(CAP_SYS_ADMIN)) | 1287 | if(!capable(CAP_SYS_ADMIN)) |
| 1286 | return -EPERM; | 1288 | return -EPERM; |
| 1289 | if (pcipci_problems & (PCIPCI_FAIL|PCIAGP_FAIL)) | ||
| 1290 | return -ENXIO; | ||
| 1287 | if (copy_from_user(&v, arg,sizeof(v))) | 1291 | if (copy_from_user(&v, arg,sizeof(v))) |
| 1288 | return -EFAULT; | 1292 | return -EFAULT; |
| 1289 | DEBUG(printk(CARD_DEBUG "VIDIOCSFBUF(%p,%d,%d,%d,%d)\n",CARD,v.base, v.width,v.height,v.depth,v.bytesperline)); | 1293 | DEBUG(printk(CARD_DEBUG "VIDIOCSFBUF(%p,%d,%d,%d,%d)\n",CARD,v.base, v.width,v.height,v.depth,v.bytesperline)); |
| @@ -2030,7 +2034,7 @@ void release_zoran(int max) | |||
| 2030 | /* free it */ | 2034 | /* free it */ |
| 2031 | free_irq(ztv->dev->irq,ztv); | 2035 | free_irq(ztv->dev->irq,ztv); |
| 2032 | 2036 | ||
| 2033 | /* unregister i2c_bus */ | 2037 | /* unregister i2c_bus */ |
| 2034 | i2c_unregister_bus((&ztv->i2c)); | 2038 | i2c_unregister_bus((&ztv->i2c)); |
| 2035 | 2039 | ||
| 2036 | /* unmap and free memory */ | 2040 | /* unmap and free memory */ |
