lxfb: Program panel v/h sync output polarity correctly

Commit b5c26f97ec4a17c65 introduced some breakage for the OLPC XO-1 laptop,
differences in the output video signal after the patch caused some problems
with the XO's display controller chip.

Reviewing of that commit against the AMD Geode LX Data Book, it seems
that these bits were being set inversely. In both cases, active high
output is denoted by a value of 0. See section 6.8.3.44 of the databook
from February 2009 (Publication ID: 33234H)

Signed-off-by: Daniel Drake <dsd@laptop.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>

authored by Daniel Drake and committed by Paul Mundt ad913da6 1e7c7804

+2 -2
+2 -2
drivers/video/geode/lxfb_ops.c
··· 276 write_fp(par, FP_PT1, 0); 277 temp = FP_PT2_SCRC; 278 279 - if (info->var.sync & FB_SYNC_HOR_HIGH_ACT) 280 temp |= FP_PT2_HSP; 281 282 - if (info->var.sync & FB_SYNC_VERT_HIGH_ACT) 283 temp |= FP_PT2_VSP; 284 285 write_fp(par, FP_PT2, temp);
··· 276 write_fp(par, FP_PT1, 0); 277 temp = FP_PT2_SCRC; 278 279 + if (!(info->var.sync & FB_SYNC_HOR_HIGH_ACT)) 280 temp |= FP_PT2_HSP; 281 282 + if (!(info->var.sync & FB_SYNC_VERT_HIGH_ACT)) 283 temp |= FP_PT2_VSP; 284 285 write_fp(par, FP_PT2, temp);