Lines Matching defs:second
867 * we have found the second, so will either return it
901 struct device *second;
905 second = dw_mipi_dsi_rockchip_find_second(dsi);
906 if (IS_ERR(second))
907 return PTR_ERR(second);
909 if (second) {
912 master2 = of_property_read_bool(second->of_node,
931 dsi->slave = dev_get_drvdata(second);
939 put_device(second);
1027 struct device *second;
1048 second = dw_mipi_dsi_rockchip_find_second(dsi);
1049 if (IS_ERR(second)) {
1050 ret = PTR_ERR(second);
1053 if (second) {
1054 ret = component_add(second, &dw_mipi_dsi_rockchip_ops);
1056 DRM_DEV_ERROR(second,
1076 struct device *second;
1078 second = dw_mipi_dsi_rockchip_find_second(dsi);
1079 if (second && !IS_ERR(second))
1080 component_del(second, &dw_mipi_dsi_rockchip_ops);