Lines Matching refs:info
159 struct mipi_dsi_device_info info = { };
163 if (of_modalias_node(node, info.type, sizeof(info.type)) < 0) {
175 info.channel = reg;
176 info.node = of_node_get(node);
178 return mipi_dsi_device_register_full(host, &info);
191 * @info: pointer to template containing DSI device information
202 const struct mipi_dsi_device_info *info)
207 if (!info) {
212 if (info->channel > 3) {
213 drm_err(host, "invalid virtual channel: %u\n", info->channel);
224 device_set_node(&dsi->dev, of_fwnode_handle(info->node));
225 dsi->channel = info->channel;
226 strlcpy(dsi->name, info->type, sizeof(dsi->name));