aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorPhilipp Zabel <p.zabel@pengutronix.de>2014-02-14 05:53:56 -0500
committerPhilipp Zabel <p.zabel@pengutronix.de>2014-03-06 11:41:48 -0500
commitf2a575f67695dcba9062acd666ae5aab2380b95c (patch)
tree86f69c5cfb33eee11693e496bf02103e50d3a3c9 /include/media
parent4329b93b283cce828967c01bc3827fdff51c8d7e (diff)
[media] of: move common endpoint parsing to drivers/of
This patch adds a new struct of_endpoint which is then embedded in struct v4l2_of_endpoint and contains the endpoint properties that are not V4L2 (or even media) specific: the port number, endpoint id, local device tree node and remote endpoint phandle. of_graph_parse_endpoint parses those properties and is used by v4l2_of_parse_endpoint, which just adds the V4L2 MBUS information to the containing v4l2_of_endpoint structure. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Acked-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Acked-by: Mauro Carvalho Chehab <m.chehab@samsung.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/v4l2-of.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/media/v4l2-of.h b/include/media/v4l2-of.h
index 3a49735c56a0..70fa7b7b0487 100644
--- a/include/media/v4l2-of.h
+++ b/include/media/v4l2-of.h
@@ -51,17 +51,13 @@ struct v4l2_of_bus_parallel {
51 51
52/** 52/**
53 * struct v4l2_of_endpoint - the endpoint data structure 53 * struct v4l2_of_endpoint - the endpoint data structure
54 * @port: identifier (value of reg property) of a port this endpoint belongs to 54 * @base: struct of_endpoint containing port, id, and local of_node
55 * @id: identifier (value of reg property) of this endpoint
56 * @local_node: pointer to device_node of this endpoint
57 * @bus_type: bus type 55 * @bus_type: bus type
58 * @bus: bus configuration data structure 56 * @bus: bus configuration data structure
59 * @head: list head for this structure 57 * @head: list head for this structure
60 */ 58 */
61struct v4l2_of_endpoint { 59struct v4l2_of_endpoint {
62 unsigned int port; 60 struct of_endpoint base;
63 unsigned int id;
64 const struct device_node *local_node;
65 enum v4l2_mbus_type bus_type; 61 enum v4l2_mbus_type bus_type;
66 union { 62 union {
67 struct v4l2_of_bus_parallel parallel; 63 struct v4l2_of_bus_parallel parallel;