Symbol: drm_format_info_min_pitch
drivers/gpu/drm/ast/ast_mode.c
999
pitch = drm_format_info_min_pitch(info, 0, mode->hdisplay);
drivers/gpu/drm/drm_dumb_buffers.c
148
pitch = drm_format_info_min_pitch(info, 0, args->width);
drivers/gpu/drm/drm_fourcc.c
542
EXPORT_SYMBOL(drm_format_info_min_pitch);
drivers/gpu/drm/drm_framebuffer.c
175
u64 min_pitch = drm_format_info_min_pitch(info, i, width);
drivers/gpu/drm/drm_gem_framebuffer_helper.c
187
+ drm_format_info_min_pitch(info, i, width)
drivers/gpu/drm/drm_mipi_dbi.c
308
len = drm_format_info_min_pitch(dst_format, 0, width) * height;
drivers/gpu/drm/drm_mipi_dbi.c
413
len = drm_format_info_min_pitch(dst_format, 0, width) * height;
drivers/gpu/drm/drm_mipi_dbi.c
543
tx_buf_size = drm_format_info_min_pitch(info, 0, mode->hdisplay) *
drivers/gpu/drm/exynos/exynos_drm_fbdev.c
86
pitch = drm_format_info_min_pitch(format, 0, sizes->surface_width);
drivers/gpu/drm/gma500/fbdev.c
125
pitch = ALIGN(drm_format_info_min_pitch(format, 0, sizes->surface_width), SZ_64);
drivers/gpu/drm/gud/gud_drv.c
563
fmt_buf_size = drm_format_info_min_pitch(info, 0, drm->mode_config.max_width) *
drivers/gpu/drm/gud/gud_pipe.c
116
len = drm_format_info_min_pitch(format, 0, width) * drm_rect_height(rect);
drivers/gpu/drm/gud/gud_pipe.c
163
pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(rect));
drivers/gpu/drm/gud/gud_pipe.c
339
pitch = drm_format_info_min_pitch(format, 0, drm_rect_width(damage));
drivers/gpu/drm/gud/gud_pipe.c
70
len = drm_format_info_min_pitch(format, 0, width) * height;
drivers/gpu/drm/imx/ipuv3/imx-drm-core.c
163
pitch_align = drm_format_info_min_pitch(info, 0, 8);
drivers/gpu/drm/msm/msm_gem.c
694
pitch_align = drm_format_info_min_pitch(info, 0, 32);
drivers/gpu/drm/rockchip/rockchip_drm_vop.c
1009
offset = drm_format_info_min_pitch(fb->format, 1,
drivers/gpu/drm/rockchip/rockchip_drm_vop.c
965
offset = drm_format_info_min_pitch(fb->format, 0,
drivers/gpu/drm/sitronix/st7920.c
370
pitch = drm_format_info_min_pitch(fi, 0, st7920->width);
drivers/gpu/drm/solomon/ssd130x.c
1066
dst_pitch = drm_format_info_min_pitch(fi, 0, drm_rect_width(rect));
drivers/gpu/drm/solomon/ssd130x.c
1106
pitch = drm_format_info_min_pitch(fi, 0, ssd130x->width);
drivers/gpu/drm/solomon/ssd130x.c
1155
pitch = drm_format_info_min_pitch(fi, 0, ssd130x->width);
drivers/gpu/drm/solomon/ssd130x.c
1538
pitch = drm_format_info_min_pitch(fi, 0, ssd130x->width);
drivers/gpu/drm/solomon/ssd130x.c
993
pitch = drm_format_info_min_pitch(fi, 0, ssd130x->width);
drivers/gpu/drm/sysfb/corebootdrm.c
85
bytes_per_line = drm_format_info_min_pitch(format, 0, width);
drivers/gpu/drm/sysfb/drm_sysfb_screen_info.c
63
lfb_linelength = drm_format_info_min_pitch(format, 0, width);
drivers/gpu/drm/sysfb/ofdrm.c
911
linebytes = drm_format_info_min_pitch(format, 0, width);
drivers/gpu/drm/sysfb/simpledrm.c
677
stride = drm_format_info_min_pitch(format, 0, width);
drivers/gpu/drm/tegra/fbdev.c
88
pitch = round_up(drm_format_info_min_pitch(format, 0, sizes->surface_width),
drivers/gpu/drm/tests/drm_format_helper_test.c
1325
pitch = drm_format_info_min_pitch(format_info, 0,
drivers/gpu/drm/tests/drm_format_helper_test.c
583
dst_pitch = drm_format_info_min_pitch(dst_fi, plane, drm_rect_width(clip));
drivers/gpu/drm/tests/drm_format_test.c
128
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
129
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
130
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
139
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
140
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
141
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
143
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
144
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 2);
drivers/gpu/drm/tests/drm_format_test.c
145
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 640);
drivers/gpu/drm/tests/drm_format_test.c
146
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 1024);
drivers/gpu/drm/tests/drm_format_test.c
147
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 1920);
drivers/gpu/drm/tests/drm_format_test.c
148
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 4096);
drivers/gpu/drm/tests/drm_format_test.c
149
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 671);
drivers/gpu/drm/tests/drm_format_test.c
150
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
152
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, (UINT_MAX - 1)),
drivers/gpu/drm/tests/drm_format_test.c
162
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
163
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
164
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
166
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 2);
drivers/gpu/drm/tests/drm_format_test.c
167
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 4);
drivers/gpu/drm/tests/drm_format_test.c
168
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 1280);
drivers/gpu/drm/tests/drm_format_test.c
169
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 2048);
drivers/gpu/drm/tests/drm_format_test.c
170
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 3840);
drivers/gpu/drm/tests/drm_format_test.c
171
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 8192);
drivers/gpu/drm/tests/drm_format_test.c
172
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 1342);
drivers/gpu/drm/tests/drm_format_test.c
173
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
175
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, (UINT_MAX - 1)),
drivers/gpu/drm/tests/drm_format_test.c
185
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
186
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
187
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
189
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 3);
drivers/gpu/drm/tests/drm_format_test.c
190
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 6);
drivers/gpu/drm/tests/drm_format_test.c
191
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 1920);
drivers/gpu/drm/tests/drm_format_test.c
192
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 3072);
drivers/gpu/drm/tests/drm_format_test.c
193
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 5760);
drivers/gpu/drm/tests/drm_format_test.c
194
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 12288);
drivers/gpu/drm/tests/drm_format_test.c
195
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 2013);
drivers/gpu/drm/tests/drm_format_test.c
196
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
198
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX - 1),
drivers/gpu/drm/tests/drm_format_test.c
208
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
209
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
210
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
212
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 4);
drivers/gpu/drm/tests/drm_format_test.c
213
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 8);
drivers/gpu/drm/tests/drm_format_test.c
214
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 2560);
drivers/gpu/drm/tests/drm_format_test.c
215
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 4096);
drivers/gpu/drm/tests/drm_format_test.c
216
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 7680);
drivers/gpu/drm/tests/drm_format_test.c
217
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 16384);
drivers/gpu/drm/tests/drm_format_test.c
218
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 2684);
drivers/gpu/drm/tests/drm_format_test.c
219
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
221
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX - 1),
drivers/gpu/drm/tests/drm_format_test.c
231
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
232
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
233
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
234
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
236
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
237
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 1), 2);
drivers/gpu/drm/tests/drm_format_test.c
238
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 2);
drivers/gpu/drm/tests/drm_format_test.c
239
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 1), 2);
drivers/gpu/drm/tests/drm_format_test.c
240
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 640);
drivers/gpu/drm/tests/drm_format_test.c
241
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 320), 640);
drivers/gpu/drm/tests/drm_format_test.c
242
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 1024);
drivers/gpu/drm/tests/drm_format_test.c
243
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 512), 1024);
drivers/gpu/drm/tests/drm_format_test.c
244
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 1920);
drivers/gpu/drm/tests/drm_format_test.c
245
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 960), 1920);
drivers/gpu/drm/tests/drm_format_test.c
246
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 4096);
drivers/gpu/drm/tests/drm_format_test.c
247
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 2048), 4096);
drivers/gpu/drm/tests/drm_format_test.c
248
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 671);
drivers/gpu/drm/tests/drm_format_test.c
249
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 336), 672);
drivers/gpu/drm/tests/drm_format_test.c
250
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
252
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, UINT_MAX / 2 + 1),
drivers/gpu/drm/tests/drm_format_test.c
254
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, (UINT_MAX - 1)),
drivers/gpu/drm/tests/drm_format_test.c
256
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, (UINT_MAX - 1) / 2),
drivers/gpu/drm/tests/drm_format_test.c
266
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
267
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
268
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
269
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
270
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 3, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
272
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
273
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
274
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 1), 1);
drivers/gpu/drm/tests/drm_format_test.c
275
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 2);
drivers/gpu/drm/tests/drm_format_test.c
276
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 2), 2);
drivers/gpu/drm/tests/drm_format_test.c
277
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 2), 2);
drivers/gpu/drm/tests/drm_format_test.c
278
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 640);
drivers/gpu/drm/tests/drm_format_test.c
279
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 320), 320);
drivers/gpu/drm/tests/drm_format_test.c
280
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 320), 320);
drivers/gpu/drm/tests/drm_format_test.c
281
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 1024);
drivers/gpu/drm/tests/drm_format_test.c
282
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 512), 512);
drivers/gpu/drm/tests/drm_format_test.c
283
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 512), 512);
drivers/gpu/drm/tests/drm_format_test.c
284
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 1920);
drivers/gpu/drm/tests/drm_format_test.c
285
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 960), 960);
drivers/gpu/drm/tests/drm_format_test.c
286
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 960), 960);
drivers/gpu/drm/tests/drm_format_test.c
287
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 4096);
drivers/gpu/drm/tests/drm_format_test.c
288
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 2048), 2048);
drivers/gpu/drm/tests/drm_format_test.c
289
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 2048), 2048);
drivers/gpu/drm/tests/drm_format_test.c
290
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 671);
drivers/gpu/drm/tests/drm_format_test.c
291
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 336), 336);
drivers/gpu/drm/tests/drm_format_test.c
292
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, 336), 336);
drivers/gpu/drm/tests/drm_format_test.c
293
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
295
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, UINT_MAX / 2 + 1),
drivers/gpu/drm/tests/drm_format_test.c
297
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, UINT_MAX / 2 + 1),
drivers/gpu/drm/tests/drm_format_test.c
299
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, (UINT_MAX - 1) / 2),
drivers/gpu/drm/tests/drm_format_test.c
301
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, (UINT_MAX - 1) / 2),
drivers/gpu/drm/tests/drm_format_test.c
303
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 2, (UINT_MAX - 1) / 2),
drivers/gpu/drm/tests/drm_format_test.c
313
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
314
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, -1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
315
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 1, 0), 0);
drivers/gpu/drm/tests/drm_format_test.c
317
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1), 2);
drivers/gpu/drm/tests/drm_format_test.c
318
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 2), 4);
drivers/gpu/drm/tests/drm_format_test.c
319
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 640), 1280);
drivers/gpu/drm/tests/drm_format_test.c
320
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1024), 2048);
drivers/gpu/drm/tests/drm_format_test.c
321
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 1920), 3840);
drivers/gpu/drm/tests/drm_format_test.c
322
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 4096), 8192);
drivers/gpu/drm/tests/drm_format_test.c
323
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, 671), 1342);
drivers/gpu/drm/tests/drm_format_test.c
324
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX),
drivers/gpu/drm/tests/drm_format_test.c
326
KUNIT_EXPECT_EQ(test, drm_format_info_min_pitch(info, 0, UINT_MAX - 1),
drivers/gpu/drm/tiny/bochs.c
608
pitch = drm_format_info_min_pitch(format, 0, mode->hdisplay);
drivers/gpu/drm/tiny/cirrus-qemu.c
523
pitch = drm_format_info_min_pitch(format, 0, mode->hdisplay);
drivers/gpu/drm/verisilicon/vs_cursor_plane.c
87
drm_format_info_min_pitch(fb->format, 0, new_plane_state->crtc_w))
drivers/gpu/drm/verisilicon/vs_plane.c
123
dma_addr += drm_format_info_min_pitch(fb->format, 0,
drivers/gpu/drm/xlnx/zynqmp_disp.c
1176
dma->sgl.size = drm_format_info_min_pitch(info, i, width);
include/drm/drm_fourcc.h
321
uint64_t drm_format_info_min_pitch(const struct drm_format_info *info,