diff options
author | Thomas Zimmermann | 2022-09-05 16:16:46 +0200 |
---|---|---|
committer | Thomas Zimmermann | 2022-09-12 09:14:26 +0200 |
commit | 216b9bbaeaea96b7f05c220f61855d174be972d8 (patch) | |
tree | 89e0c2bc96f351183fcff9fabab3b7ea442bfc25 /drivers/gpu/drm/tiny/ili9341.c | |
parent | d25654b3fad9906ca80912701fd4bd6e2419f54d (diff) |
drm/probe-helper: Add drm_crtc_helper_mode_valid_fixed()
Add drm_crtc_helper_mode_valid_fixed(), which validates a given mode
against a display hardware's mode. Convert simpledrm and use it in a
few other drivers with static modes.
v4:
* remove empty line after opening brace
v2:
* rename 'static' and 'hw' to 'fixed' everywhere
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220905141648.22013-3-tzimmermann@suse.de
Diffstat (limited to 'drivers/gpu/drm/tiny/ili9341.c')
-rw-r--r-- | drivers/gpu/drm/tiny/ili9341.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/tiny/ili9341.c b/drivers/gpu/drm/tiny/ili9341.c index b8826a0b086b..69b265e78096 100644 --- a/drivers/gpu/drm/tiny/ili9341.c +++ b/drivers/gpu/drm/tiny/ili9341.c @@ -137,6 +137,7 @@ out_exit: } static const struct drm_simple_display_pipe_funcs ili9341_pipe_funcs = { + .mode_valid = mipi_dbi_pipe_mode_valid, .enable = yx240qv29_enable, .disable = mipi_dbi_pipe_disable, .update = mipi_dbi_pipe_update, |