From: Archit Taneja Date: Thu, 13 Mar 2014 11:44:10 +0000 (-0300) Subject: [media] v4l: ti-vpe: Rename csc memory resource name X-Git-Tag: next-20140530~82^2~4^2~71 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=536954f1e9b26a135c17e6a8a03f2a40a069df27;p=karo-tx-linux.git [media] v4l: ti-vpe: Rename csc memory resource name Rename the memory block resource "vpe_csc" to "csc" since it also exists within the VIP IP block. This would make the name more generic, and both VPE and VIP DT nodes in the future can use it. Signed-off-by: Archit Taneja Signed-off-by: Kamil Debski Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/platform/ti-vpe/csc.c b/drivers/media/platform/ti-vpe/csc.c index 3374e0490cb0..940df4000c42 100644 --- a/drivers/media/platform/ti-vpe/csc.c +++ b/drivers/media/platform/ti-vpe/csc.c @@ -180,7 +180,7 @@ struct csc_data *csc_create(struct platform_device *pdev) csc->pdev = pdev; csc->res = platform_get_resource_byname(pdev, IORESOURCE_MEM, - "vpe_csc"); + "csc"); if (csc->res == NULL) { dev_err(&pdev->dev, "missing platform resources data\n"); return ERR_PTR(-ENODEV);