diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2006-10-03 04:15:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-03 11:04:13 -0400 |
commit | f5b747b487038ce2a23e7b922bc4d27149838965 (patch) | |
tree | e68265a62b896a26913ff9e0c9e948f484bab915 /drivers/video/aty | |
parent | 9b262144a1b84c781555efd68769711279ebfba3 (diff) |
[PATCH] radeonfb supend/resume support for Acer Aspire 2010
This patch adds suspend/resume support for the graphics chip in the
Acer Aspire 2010: ATI Technologies Inc RV350 [Mobility Radeon 9600 M10]
01:00.0 0300: 1002:4e50 (prog-if 00 [VGA])
Subsystem: 1025:0061
Flags: bus master, 66MHz, medium devsel, latency 128, IRQ 16
Memory at a8000000 (32-bit, prefetchable) [size=128M]
I/O ports at c100 [size=256]
Memory at e0010000 (32-bit, non-prefetchable) [size=64K]
[virtual] Expansion ROM at a0000000 [disabled] [size=128K]
Capabilities: [58] AGP version 2.0
Capabilities: [50] Power Management version 2
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@mgx.net>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: "Benjamin A. Okopnik" <ben@linuxgazette.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/aty')
-rw-r--r-- | drivers/video/aty/radeon_pm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/aty/radeon_pm.c b/drivers/video/aty/radeon_pm.c index 365de5dcc888..9a2b0d69b0ae 100644 --- a/drivers/video/aty/radeon_pm.c +++ b/drivers/video/aty/radeon_pm.c | |||
@@ -86,6 +86,9 @@ static struct radeon_device_id radeon_workaround_list[] = { | |||
86 | BUGFIX("Samsung P35", | 86 | BUGFIX("Samsung P35", |
87 | PCI_VENDOR_ID_SAMSUNG, 0xc00c, | 87 | PCI_VENDOR_ID_SAMSUNG, 0xc00c, |
88 | radeon_pm_off, radeon_reinitialize_M10), | 88 | radeon_pm_off, radeon_reinitialize_M10), |
89 | BUGFIX("Acer Aspire 2010", | ||
90 | PCI_VENDOR_ID_AI, 0x0061, | ||
91 | radeon_pm_off, radeon_reinitialize_M10), | ||
89 | { .ident = NULL } | 92 | { .ident = NULL } |
90 | }; | 93 | }; |
91 | 94 | ||