Lines Matching defs:ret
29 int length, cells, ret;
39 ret = of_property_read_u32(np, name, &result->typ);
43 ret = of_property_read_u32_array(np, name, &result->min, cells);
49 return ret;
61 int ret = 0;
65 ret |= parse_timing_property(np, "hback-porch", &dt->hback_porch);
66 ret |= parse_timing_property(np, "hfront-porch", &dt->hfront_porch);
67 ret |= parse_timing_property(np, "hactive", &dt->hactive);
68 ret |= parse_timing_property(np, "hsync-len", &dt->hsync_len);
69 ret |= parse_timing_property(np, "vback-porch", &dt->vback_porch);
70 ret |= parse_timing_property(np, "vfront-porch", &dt->vfront_porch);
71 ret |= parse_timing_property(np, "vactive", &dt->vactive);
72 ret |= parse_timing_property(np, "vsync-len", &dt->vsync_len);
73 ret |= parse_timing_property(np, "clock-frequency", &dt->pixelclock);
105 if (ret) {
123 int ret;
132 ret = of_parse_display_timing(timing_np, dt);
136 return ret;