aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/ti-vpe
diff options
context:
space:
mode:
authorArchit Taneja <archit@ti.com>2014-03-13 07:44:10 -0400
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-05-23 13:33:17 -0400
commit536954f1e9b26a135c17e6a8a03f2a40a069df27 (patch)
tree86d8c40293c43fabb51dbdc0a6072e98a22a8607 /drivers/media/platform/ti-vpe
parent2ef114f6821b013c42d2ef1e31600d957a47542b (diff)
[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 <archit@ti.com> Signed-off-by: Kamil Debski <k.debski@samsung.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/platform/ti-vpe')
-rw-r--r--drivers/media/platform/ti-vpe/csc.c2
1 files changed, 1 insertions, 1 deletions
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)
180 csc->pdev = pdev; 180 csc->pdev = pdev;
181 181
182 csc->res = platform_get_resource_byname(pdev, IORESOURCE_MEM, 182 csc->res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
183 "vpe_csc"); 183 "csc");
184 if (csc->res == NULL) { 184 if (csc->res == NULL) {
185 dev_err(&pdev->dev, "missing platform resources data\n"); 185 dev_err(&pdev->dev, "missing platform resources data\n");
186 return ERR_PTR(-ENODEV); 186 return ERR_PTR(-ENODEV);