tegra: video: fix tegra_dc_sor_config_panel()
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 4 Apr 2021 23:48:51 +0000 (01:48 +0200)
committerAnatolij Gustschin <agust@denx.de>
Sat, 10 Apr 2021 15:07:35 +0000 (17:07 +0200)
Bitwise OR has a higher operator precedence than the ternary conditional.
Add the missing parentheses.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
drivers/video/tegra124/sor.c

index 95976ee..ef1a2e6 100644 (file)
@@ -671,8 +671,8 @@ static void tegra_dc_sor_config_panel(struct tegra_dc_sor_data *sor,
                              CSTM_ROTCLK_DEFAULT_MASK |
                              CSTM_LVDS_EN_ENABLE,
                              2 << CSTM_ROTCLK_SHIFT |
-                             is_lvds ? CSTM_LVDS_EN_ENABLE :
-                             CSTM_LVDS_EN_DISABLE);
+                             (is_lvds ? CSTM_LVDS_EN_ENABLE :
+                             CSTM_LVDS_EN_DISABLE));
 
         tegra_dc_sor_config_pwm(sor, 1024, 1024);
 }