Skip to content

Commit 1240767

Browse files
committed
Merge tag 'drm-misc-next-fixes-2025-09-18' of https://gitlab.freedesktop.org/drm/misc/kernel into drm-next
Short summary of fixes pull: pixpaper: - Fix mode_valid function signature Signed-off-by: Dave Airlie <[email protected]> From: Thomas Zimmermann <[email protected]> Link: https://lore.kernel.org/r/[email protected]
2 parents 6f17ab9 + 0265d0e commit 1240767

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/tiny/pixpaper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -968,8 +968,8 @@ static const struct drm_crtc_funcs pixpaper_crtc_funcs = {
968968
.atomic_destroy_state = drm_atomic_helper_crtc_destroy_state,
969969
};
970970

971-
static int pixpaper_mode_valid(struct drm_crtc *crtc,
972-
const struct drm_display_mode *mode)
971+
static enum drm_mode_status
972+
pixpaper_mode_valid(struct drm_crtc *crtc, const struct drm_display_mode *mode)
973973
{
974974
if (mode->hdisplay == PIXPAPER_WIDTH &&
975975
mode->vdisplay == PIXPAPER_HEIGHT) {

0 commit comments

Comments
 (0)