Commit e92f75e7 authored by Linus Torvalds's avatar Linus Torvalds

Fix typo nonsense test in radeon PMAC backlight code.

parent 0fed9584
...@@ -1865,7 +1865,7 @@ static int radeon_set_backlight_enable(int on, int level, void *data) ...@@ -1865,7 +1865,7 @@ static int radeon_set_backlight_enable(int on, int level, void *data)
lvds_gen_cntl |= (LVDS_BL_MOD_EN | LVDS_BLON); lvds_gen_cntl |= (LVDS_BL_MOD_EN | LVDS_BLON);
if (on && (level > BACKLIGHT_OFF)) { if (on && (level > BACKLIGHT_OFF)) {
lvds_gen_cntl |= LVDS_DIGON; lvds_gen_cntl |= LVDS_DIGON;
if (!lvds_gen_cntl & LVDS_ON) { if (!(lvds_gen_cntl & LVDS_ON)) {
lvds_gen_cntl &= ~LVDS_BLON; lvds_gen_cntl &= ~LVDS_BLON;
OUTREG(LVDS_GEN_CNTL, lvds_gen_cntl); OUTREG(LVDS_GEN_CNTL, lvds_gen_cntl);
(void)INREG(LVDS_GEN_CNTL); (void)INREG(LVDS_GEN_CNTL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment