Skip to content

Commit

Permalink
intelfb: Fix bug in DPLL disable
Browse files Browse the repository at this point in the history
Reported in Kernel Bugzilla 9006

Fix an obvious bug in DPLL disable.

Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
adaplas authored and Linus Torvalds committed Sep 19, 2007
1 parent 389a3c0 commit 8c8bd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/video/intelfb/intelfbhw.c
Expand Up @@ -1352,7 +1352,7 @@ intelfbhw_program_mode(struct intelfb_info *dinfo,

/* turn off PLL */
tmp = INREG(dpll_reg);
dpll_reg &= ~DPLL_VCO_ENABLE;
tmp &= ~DPLL_VCO_ENABLE;
OUTREG(dpll_reg, tmp);

/* Set PLL parameters */
Expand Down

0 comments on commit 8c8bd03

Please sign in to comment.