summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--drivers/video/tegra/fb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/tegra/fb.c b/drivers/video/tegra/fb.c
index b7aa066751fc..9d6f15cda48b 100644
--- a/drivers/video/tegra/fb.c
+++ b/drivers/video/tegra/fb.c
@@ -610,10 +610,10 @@ static int parse_opt(struct tegra_dc_out *out, char *this_opt)
} else if (!strncmp(this_opt, "pixclockpol:", 12)) {
if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
out->out_pins[TEGRA_DC_OUT_PIN_PIXEL_CLOCK].pol =
- TEGRA_DC_OUT_PIN_POL_LOW;
+ TEGRA_DC_OUT_PIN_POL_HIGH;
} else {
out->out_pins[TEGRA_DC_OUT_PIN_PIXEL_CLOCK].pol =
- TEGRA_DC_OUT_PIN_POL_HIGH;
+ TEGRA_DC_OUT_PIN_POL_LOW;
}
return 0;
}