Skip to content

Commit

Permalink
drm/panel: sitronix-st7789v: fix indentation in drm_panel_funcs
Browse files Browse the repository at this point in the history
Fix indentation of the callbacks in struct drm_panel_funcs.
No functional changes.

Reviewed-by: Sebastian Reichel <sre@kernel.org>
Signed-off-by: Michael Riesch <michael.riesch@wolfvision.net>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230718-feature-st7789v-v3-1-157d68fb63e2@wolfvision.net
  • Loading branch information
Michael Riesch authored and Neil Armstrong committed Aug 4, 2023
1 parent 6db96c7 commit a238b5e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/gpu/drm/panel/panel-sitronix-st7789v.c
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,11 @@ static int st7789v_unprepare(struct drm_panel *panel)
}

static const struct drm_panel_funcs st7789v_drm_funcs = {
.disable = st7789v_disable,
.enable = st7789v_enable,
.get_modes = st7789v_get_modes,
.prepare = st7789v_prepare,
.unprepare = st7789v_unprepare,
.disable = st7789v_disable,
.enable = st7789v_enable,
.get_modes = st7789v_get_modes,
.prepare = st7789v_prepare,
.unprepare = st7789v_unprepare,
};

static int st7789v_probe(struct spi_device *spi)
Expand Down

0 comments on commit a238b5e

Please sign in to comment.