diff options
-rw-r--r-- | drivers/media/video/omap3isp/isp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/video/omap3isp/isp.c b/drivers/media/video/omap3isp/isp.c index 3db8583497ee..06afbc14f6ae 100644 --- a/drivers/media/video/omap3isp/isp.c +++ b/drivers/media/video/omap3isp/isp.c | |||
@@ -1509,7 +1509,8 @@ void omap3isp_put(struct isp_device *isp) | |||
1509 | BUG_ON(isp->ref_count == 0); | 1509 | BUG_ON(isp->ref_count == 0); |
1510 | if (--isp->ref_count == 0) { | 1510 | if (--isp->ref_count == 0) { |
1511 | isp_disable_interrupts(isp); | 1511 | isp_disable_interrupts(isp); |
1512 | isp_save_ctx(isp); | 1512 | if (isp->domain) |
1513 | isp_save_ctx(isp); | ||
1513 | /* Reset the ISP if an entity has failed to stop. This is the | 1514 | /* Reset the ISP if an entity has failed to stop. This is the |
1514 | * only way to recover from such conditions. | 1515 | * only way to recover from such conditions. |
1515 | */ | 1516 | */ |
@@ -1996,6 +1997,7 @@ static int isp_remove(struct platform_device *pdev) | |||
1996 | omap3isp_get(isp); | 1997 | omap3isp_get(isp); |
1997 | iommu_detach_device(isp->domain, &pdev->dev); | 1998 | iommu_detach_device(isp->domain, &pdev->dev); |
1998 | iommu_domain_free(isp->domain); | 1999 | iommu_domain_free(isp->domain); |
2000 | isp->domain = NULL; | ||
1999 | omap3isp_put(isp); | 2001 | omap3isp_put(isp); |
2000 | 2002 | ||
2001 | free_irq(isp->irq_num, isp); | 2003 | free_irq(isp->irq_num, isp); |