From: Kieran Bingham Date: Wed, 22 Sep 2021 23:47:22 +0000 (+0100) Subject: drm: rcar-du: Sort the DU outputs X-Git-Tag: block-5.16-2021-11-13~77^2~12^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=34176f4bf07cda6ae9c3ab70c1d5785c153c795b;p=linux-block.git drm: rcar-du: Sort the DU outputs Sort the DU outputs alphabetically, with the exception of the final entry which is there as a sentinal. Reviewed-by: Laurent Pinchart Signed-off-by: Kieran Bingham Signed-off-by: Laurent Pinchart --- diff --git a/drivers/gpu/drm/rcar-du/rcar_du_drv.h b/drivers/gpu/drm/rcar-du/rcar_du_drv.h index 859fd5992601..1b3ab07557aa 100644 --- a/drivers/gpu/drm/rcar-du/rcar_du_drv.h +++ b/drivers/gpu/drm/rcar-du/rcar_du_drv.h @@ -36,10 +36,10 @@ struct rcar_du_device; enum rcar_du_output { RCAR_DU_OUTPUT_DPAD0, RCAR_DU_OUTPUT_DPAD1, - RCAR_DU_OUTPUT_LVDS0, - RCAR_DU_OUTPUT_LVDS1, RCAR_DU_OUTPUT_HDMI0, RCAR_DU_OUTPUT_HDMI1, + RCAR_DU_OUTPUT_LVDS0, + RCAR_DU_OUTPUT_LVDS1, RCAR_DU_OUTPUT_TCON, RCAR_DU_OUTPUT_MAX, };