diff options
author | 2024-08-18 11:38:15 +0530 | |
---|---|---|
committer | 2024-08-20 14:17:54 -0700 | |
commit | 051c86afc342aed1f84d66ff5d09dc9e1c1685a1 (patch) | |
tree | bd949bde8b1d508921b004d83b0ffba353b22641 /include/drm/drm_mipi_dsi.h | |
parent | drm/panel: ili9341: Add comments for registers in ili9341_config() (diff) | |
download | wireguard-linux-051c86afc342aed1f84d66ff5d09dc9e1c1685a1.tar.xz wireguard-linux-051c86afc342aed1f84d66ff5d09dc9e1c1685a1.zip |
drm/mipi-dsi: Add mipi_dsi_dcs_set_tear_scanline_multi
mipi_dsi_dcs_set_tear_scanline_multi can heavily benefit from being
converted to a multi style function as it is often called in the context of
similar functions.
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Tejas Vipin <tejasvipin76@gmail.com>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240818060816.848784-2-tejasvipin76@gmail.com
Diffstat (limited to '')
-rw-r--r-- | include/drm/drm_mipi_dsi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/drm_mipi_dsi.h b/include/drm/drm_mipi_dsi.h index b78aae45cae7..f725f8654611 100644 --- a/include/drm/drm_mipi_dsi.h +++ b/include/drm/drm_mipi_dsi.h @@ -375,6 +375,8 @@ void mipi_dsi_dcs_set_column_address_multi(struct mipi_dsi_multi_context *ctx, u16 start, u16 end); void mipi_dsi_dcs_set_page_address_multi(struct mipi_dsi_multi_context *ctx, u16 start, u16 end); +void mipi_dsi_dcs_set_tear_scanline_multi(struct mipi_dsi_multi_context *ctx, + u16 scanline); /** * mipi_dsi_generic_write_seq - transmit data using a generic write packet |