diff options
author | Jacopo Mondi <jacopo+renesas@jmondi.org> | 2018-06-12 12:43:23 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-07-04 16:08:14 +0300 |
commit | d24c029ed3fb64f4b61ff38b8db4e2b35fa140a8 (patch) | |
tree | bc9c777a95bb89e0691162c86565fc4566b87014 /drivers/media/platform/rcar-vin/rcar-vin.h | |
parent | e35f702151346b7a97979d9d78d66ab461ba366f (diff) | |
download | linux-d24c029ed3fb64f4b61ff38b8db4e2b35fa140a8.tar.xz |
media: rcar-vin: Rename 'digital' to 'parallel'
As the term 'digital' is used all over the rcar-vin code in place of
'parallel', rename all the occurrencies.
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>
Diffstat (limited to 'drivers/media/platform/rcar-vin/rcar-vin.h')
-rw-r--r-- | drivers/media/platform/rcar-vin/rcar-vin.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/platform/rcar-vin/rcar-vin.h b/drivers/media/platform/rcar-vin/rcar-vin.h index ff747e22d8cf..b89f63b8ecdc 100644 --- a/drivers/media/platform/rcar-vin/rcar-vin.h +++ b/drivers/media/platform/rcar-vin/rcar-vin.h @@ -148,7 +148,7 @@ struct rvin_info { * @v4l2_dev: V4L2 device * @ctrl_handler: V4L2 control handler * @notifier: V4L2 asynchronous subdevs notifier - * @digital: entity in the DT for local digital subdevice + * @parallel: entity in the DT for local parallel subdevice * * @group: Gen3 CSI group * @id: Gen3 group id for this VIN @@ -184,7 +184,7 @@ struct rvin_dev { struct v4l2_device v4l2_dev; struct v4l2_ctrl_handler ctrl_handler; struct v4l2_async_notifier notifier; - struct rvin_graph_entity *digital; + struct rvin_graph_entity *parallel; struct rvin_group *group; unsigned int id; @@ -211,7 +211,7 @@ struct rvin_dev { v4l2_std_id std; }; -#define vin_to_source(vin) ((vin)->digital->subdev) +#define vin_to_source(vin) ((vin)->parallel->subdev) /* Debug */ #define vin_dbg(d, fmt, arg...) dev_dbg(d->dev, fmt, ##arg) |