Commit b92d8a6e authored by Yang Yingliang's avatar Yang Yingliang Committed by Greg Kroah-Hartman
Browse files

USB: c67x00: 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>
Link: https://lore.kernel.org/r/20220510112804.2401150-1-yangyingliang@huawei.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 84db2ee2
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -189,13 +189,11 @@ static int c67x00_drv_remove(struct platform_device *pdev)
	c67x00_ll_release(c67x00);

	res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
	if (res)
	free_irq(res->start, c67x00);

	iounmap(c67x00->hpi.base);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (res)
	release_mem_region(res->start, resource_size(res));

	kfree(c67x00);