]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/tegra: dc: Rename BASE_COLOR_SIZE* fields
authorThierry Reding <treding@nvidia.com>
Wed, 5 Aug 2015 14:39:55 +0000 (16:39 +0200)
committerThierry Reding <treding@nvidia.com>
Thu, 13 Aug 2015 11:47:43 +0000 (13:47 +0200)
Use an underscore to separate the prefix from the color size suffix.

Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/tegra/dc.h
drivers/gpu/drm/tegra/hdmi.c

index 87700bf601086666411ca51442b9a456d7b5447c..203056a378f077e4b598ce27ac35ada360d0402e 100644 (file)
 #define DITHER_CONTROL_DISABLE (0 << 8)
 #define DITHER_CONTROL_ORDERED (2 << 8)
 #define DITHER_CONTROL_ERRDIFF (3 << 8)
+#define BASE_COLOR_SIZE_666    (0 << 0)
+#define BASE_COLOR_SIZE_111    (1 << 0)
+#define BASE_COLOR_SIZE_222    (2 << 0)
+#define BASE_COLOR_SIZE_333    (3 << 0)
+#define BASE_COLOR_SIZE_444    (4 << 0)
+#define BASE_COLOR_SIZE_555    (5 << 0)
+#define BASE_COLOR_SIZE_565    (6 << 0)
+#define BASE_COLOR_SIZE_332    (7 << 0)
+#define BASE_COLOR_SIZE_888    (8 << 0)
 
 #define DC_DISP_SHIFT_CLOCK_OPTIONS            0x431
 #define  SC1_H_QUALIFIER_NONE  (1 << 16)
index 58f0cff65ff83a1eeadc9de62d806fd48ec9a145..0749308f4203e15937c619c4ab1f2e22d61ce367 100644 (file)
@@ -872,7 +872,7 @@ static void tegra_hdmi_encoder_mode_set(struct drm_encoder *encoder,
 
        tegra_dc_writel(dc, VSYNC_H_POSITION(1),
                        DC_DISP_DISP_TIMING_OPTIONS);
-       tegra_dc_writel(dc, DITHER_CONTROL_DISABLE | BASE_COLOR_SIZE888,
+       tegra_dc_writel(dc, DITHER_CONTROL_DISABLE | BASE_COLOR_SIZE_888,
                        DC_DISP_DISP_COLOR_CONTROL);
 
        /* video_preamble uses h_pulse2 */