Commit a16b6d13 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] radeonfb powerdown doesn't work

From: <fxkuehl@gmx.de>

When I switch the computer to standby with echo -n standby >
/sys/power/state the radeonfb driver tells me its suspending to state 1 but
the display does not get turned off.  It turns out to be a small typo in
drivers/video/aty/radeon_pm.c.

(from http://bugme.osdl.org/show_bug.cgi?id=2758)
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 311a5ffe
...@@ -867,7 +867,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, u32 state) ...@@ -867,7 +867,7 @@ int radeonfb_pci_suspend(struct pci_dev *pdev, u32 state)
} }
/* Blank display and LCD */ /* Blank display and LCD */
radeonfb_blank(VESA_POWERDOWN+1, info); radeonfb_blank(VESA_POWERDOWN, info);
/* Sleep */ /* Sleep */
rinfo->asleep = 1; rinfo->asleep = 1;
......
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