Lines Matching defs:linebytes
201 u32 linebytes;
202 int ret = display_read_u32_of(dev, of_node, "linebytes", &linebytes);
206 return display_get_validated_int(dev, "linebytes", linebytes);
829 int width, height, depth, linebytes;
903 linebytes = display_get_linebytes_of(dev, of_node);
904 if (linebytes < 0)
905 return ERR_PTR(linebytes);
910 if (!linebytes) {
911 linebytes = drm_format_info_min_pitch(format, 0, width);
912 if (drm_WARN_ON(dev, !linebytes))
916 fb_size = linebytes * height;
992 sysfb->fb_pitch = linebytes;
998 drm_dbg(dev, "framebuffer format=%p4cc, size=%dx%d, linebytes=%d byte\n",
999 &format->format, width, height, linebytes);