Commit 90c95c38 authored by AngeloGioacchino Del Regno's avatar AngeloGioacchino Del Regno Committed by Chun-Kuang Hu
Browse files

drm/mediatek: mtk_dpi: Switch to .remove_new() void callback

parent 846a7ae1
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1087,11 +1087,9 @@ static int mtk_dpi_probe(struct platform_device *pdev)
	return 0;
}

static int mtk_dpi_remove(struct platform_device *pdev)
static void mtk_dpi_remove(struct platform_device *pdev)
{
	component_del(&pdev->dev, &mtk_dpi_component_ops);

	return 0;
}

static const struct of_device_id mtk_dpi_of_ids[] = {
@@ -1122,7 +1120,7 @@ MODULE_DEVICE_TABLE(of, mtk_dpi_of_ids);

struct platform_driver mtk_dpi_driver = {
	.probe = mtk_dpi_probe,
	.remove = mtk_dpi_remove,
	.remove_new = mtk_dpi_remove,
	.driver = {
		.name = "mediatek-dpi",
		.of_match_table = mtk_dpi_of_ids,