void omap3isp_hist_cleanup(struct isp_device *isp)
{
    if (HIST_USING_DMA(&isp->isp_hist))
        omap_free_dma(isp->isp_hist.dma_ch);
    kfree(isp->isp_hist.priv);
    omap3isp_stat_cleanup(&isp->isp_hist);
}
Example #2
0
/*
 * omap3isp_hist_cleanup - Module cleanup.
 */
void omap3isp_hist_cleanup(struct isp_device *isp)
{
	struct ispstat *hist = &isp->isp_hist;

	if (hist->dma_ch)
		dma_release_channel(hist->dma_ch);

	omap3isp_stat_cleanup(hist);
}