Lines Matching refs:linebytes
205 u32 linebytes;
206 int ret = display_read_u32_of(dev, of_node, "linebytes", &linebytes);
210 return display_get_validated_int(dev, "linebytes", linebytes);
1085 int width, height, depth, linebytes;
1157 linebytes = display_get_linebytes_of(dev, of_node);
1158 if (linebytes < 0)
1159 return ERR_PTR(linebytes);
1164 if (!linebytes) {
1165 linebytes = drm_format_info_min_pitch(format, 0, width);
1166 if (drm_WARN_ON(dev, !linebytes))
1170 fb_size = linebytes * height;
1243 odev->pitch = linebytes;
1246 drm_dbg(dev, "framebuffer format=%p4cc, size=%dx%d, linebytes=%d byte\n",
1247 &format->format, width, height, linebytes);