Commit a7dda655 authored by Yang Yingliang's avatar Yang Yingliang Committed by Mauro Carvalho Chehab
Browse files

media: dm644x_ccdc: remove unnecessary check of res



The resource is checked in probe function, so there is
no need do this check in remove function.

Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 26070ea6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -839,7 +839,6 @@ static int dm644x_ccdc_remove(struct platform_device *pdev)

	iounmap(ccdc_cfg.base_addr);
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res)
	release_mem_region(res->start, resource_size(res));
	vpfe_unregister_ccdc_device(&ccdc_hw_dev);
	return 0;