summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo+renesas@jmondi.org>2018-06-12 11:43:31 +0200
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>2018-07-04 15:23:13 +0200
commit5cda0fca7824605d56e4c0d9a96d464d9a93dc33 (patch)
treeb27f545036ed136e7a32d1c13e4a548ee74fbdb7
parentmedia: rcar-vin: Handle parallel subdev in link_notify (diff)
downloadlinux-5cda0fca7824605d56e4c0d9a96d464d9a93dc33.tar.xz
linux-5cda0fca7824605d56e4c0d9a96d464d9a93dc33.zip
media: rcar-vin: Rename _rcar_info to rcar_info
Remove leading underscore to align all rcar_group_route structure declarations. Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org> Acked-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r--drivers/media/platform/rcar-vin/rcar-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/rcar-vin/rcar-core.c b/drivers/media/platform/rcar-vin/rcar-core.c
index cd37657530db..636784079921 100644
--- a/drivers/media/platform/rcar-vin/rcar-core.c
+++ b/drivers/media/platform/rcar-vin/rcar-core.c
@@ -1070,7 +1070,7 @@ static const struct rvin_info rcar_info_r8a77965 = {
.routes = rcar_info_r8a77965_routes,
};
-static const struct rvin_group_route _rcar_info_r8a77970_routes[] = {
+static const struct rvin_group_route rcar_info_r8a77970_routes[] = {
{ .csi = RVIN_CSI40, .channel = 0, .vin = 0, .mask = BIT(0) | BIT(3) },
{ .csi = RVIN_CSI40, .channel = 0, .vin = 1, .mask = BIT(2) },
{ .csi = RVIN_CSI40, .channel = 1, .vin = 1, .mask = BIT(3) },
@@ -1086,7 +1086,7 @@ static const struct rvin_info rcar_info_r8a77970 = {
.use_mc = true,
.max_width = 4096,
.max_height = 4096,
- .routes = _rcar_info_r8a77970_routes,
+ .routes = rcar_info_r8a77970_routes,
};
static const struct of_device_id rvin_of_id_table[] = {