mirror of
https://github.com/torvalds/linux.git
synced 2024-12-22 02:52:56 +00:00
media: exynos4-is: Use global num_sensors rather than local index
Instead of keeping a local copy of how many sensors we've probed (which may not even properly represent the number of sensors probed if we have a port without a sensor), use the global num_sensors counter that has the actual number used. This will also make it easier to add support for multiple sensors being connected to the same port. Signed-off-by: Jonathan Bakker <xc-racer2@live.ca> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
1068fe3aaf
commit
401b463dac
@ -397,9 +397,9 @@ static void fimc_md_pipelines_free(struct fimc_md *fmd)
|
|||||||
|
|
||||||
/* Parse port node and register as a sub-device any sensor specified there. */
|
/* Parse port node and register as a sub-device any sensor specified there. */
|
||||||
static int fimc_md_parse_port_node(struct fimc_md *fmd,
|
static int fimc_md_parse_port_node(struct fimc_md *fmd,
|
||||||
struct device_node *port,
|
struct device_node *port)
|
||||||
unsigned int index)
|
|
||||||
{
|
{
|
||||||
|
int index = fmd->num_sensors;
|
||||||
struct fimc_source_info *pd = &fmd->sensor[index].pdata;
|
struct fimc_source_info *pd = &fmd->sensor[index].pdata;
|
||||||
struct device_node *rem, *ep, *np;
|
struct device_node *rem, *ep, *np;
|
||||||
struct v4l2_fwnode_endpoint endpoint = { .bus_type = 0 };
|
struct v4l2_fwnode_endpoint endpoint = { .bus_type = 0 };
|
||||||
@ -489,7 +489,6 @@ static int fimc_md_register_sensor_entities(struct fimc_md *fmd)
|
|||||||
struct device_node *parent = fmd->pdev->dev.of_node;
|
struct device_node *parent = fmd->pdev->dev.of_node;
|
||||||
struct device_node *ports = NULL;
|
struct device_node *ports = NULL;
|
||||||
struct device_node *node;
|
struct device_node *node;
|
||||||
int index = 0;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -516,13 +515,12 @@ static int fimc_md_register_sensor_entities(struct fimc_md *fmd)
|
|||||||
if (!port)
|
if (!port)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
ret = fimc_md_parse_port_node(fmd, port, index);
|
ret = fimc_md_parse_port_node(fmd, port);
|
||||||
of_node_put(port);
|
of_node_put(port);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
of_node_put(node);
|
of_node_put(node);
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
index++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Attach sensors listed in the parallel-ports node */
|
/* Attach sensors listed in the parallel-ports node */
|
||||||
@ -531,12 +529,11 @@ static int fimc_md_register_sensor_entities(struct fimc_md *fmd)
|
|||||||
goto rpm_put;
|
goto rpm_put;
|
||||||
|
|
||||||
for_each_child_of_node(ports, node) {
|
for_each_child_of_node(ports, node) {
|
||||||
ret = fimc_md_parse_port_node(fmd, node, index);
|
ret = fimc_md_parse_port_node(fmd, node);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
of_node_put(node);
|
of_node_put(node);
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
index++;
|
|
||||||
}
|
}
|
||||||
of_node_put(ports);
|
of_node_put(ports);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user