media: ipu-bridge: Move initialization of node_names.vcm to ipu_bridge_init_swnode_names()
Move initialization of node_names.vcm to ipu_bridge_init_swnode_names() where it belongs. And make the initialization of nodes[SWNODE_VCM] unconditional, ipu_bridge_init_swnode_group() takes care of not registering it when there is no VCM. Reviewed-by: Andy Shevchenko <andy@kernel.org> Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
parent
11e0a7c8e0
commit
41eebd6438
|
@ -201,6 +201,12 @@ static void ipu_bridge_init_swnode_names(struct ipu_sensor *sensor)
|
|||
snprintf(sensor->node_names.endpoint,
|
||||
sizeof(sensor->node_names.endpoint),
|
||||
SWNODE_GRAPH_ENDPOINT_NAME_FMT, 0); /* And endpoint 0 */
|
||||
if (sensor->ssdb.vcmtype) {
|
||||
/* append ssdb.link to distinguish nodes with same model VCM */
|
||||
snprintf(sensor->node_names.vcm, sizeof(sensor->node_names.vcm),
|
||||
"%s-%u", ipu_vcm_types[sensor->ssdb.vcmtype - 1],
|
||||
sensor->ssdb.link);
|
||||
}
|
||||
}
|
||||
|
||||
static void ipu_bridge_init_swnode_group(struct ipu_sensor *sensor)
|
||||
|
@ -237,13 +243,7 @@ static void ipu_bridge_create_connection_swnodes(struct ipu_bridge *bridge,
|
|||
sensor->node_names.endpoint,
|
||||
&nodes[SWNODE_IPU_PORT],
|
||||
sensor->ipu_properties);
|
||||
if (sensor->ssdb.vcmtype) {
|
||||
/* append ssdb.link to distinguish VCM nodes with same HID */
|
||||
snprintf(sensor->node_names.vcm, sizeof(sensor->node_names.vcm),
|
||||
"%s-%u", ipu_vcm_types[sensor->ssdb.vcmtype - 1],
|
||||
sensor->ssdb.link);
|
||||
nodes[SWNODE_VCM] = NODE_VCM(sensor->node_names.vcm);
|
||||
}
|
||||
nodes[SWNODE_VCM] = NODE_VCM(sensor->node_names.vcm);
|
||||
|
||||
ipu_bridge_init_swnode_group(sensor);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue