Fix type mismatch with gcc14.
NULL pointer should be 0 as int type.
[ 272s] drivers/gpu/drm/verisilicon/vs_drv.c: In function 'vs_debugfs_planes_show':
[ 272s] drivers/gpu/drm/verisilicon/vs_drv.c:81:42: error: pointer/integer type mismatch in conditional expression [-Wint-conversion]
[ 272s] 81 | state->fb->format->format : "(null)");
[ 272s] | ^
[ 272s] CC lib/timerqueue.o
Change-Id: I00868d7f6ca94a9c9939d7a68b7fbf6b29f98330
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
seq_printf(s, "\tsrc-pos = " DRM_RECT_FP_FMT "\n",
DRM_RECT_FP_ARG(&plane_state->status.src));
seq_printf(s, "\tformat = %p4cc\n", state->fb ?
- state->fb->format->format : "(null)");
+ state->fb->format->format : 0);
seq_printf(s, "\trotation = 0x%x\n", state->rotation);
seq_printf(s, "\ttiling = %u\n",
plane_state->status.tile_mode);