diff options
author | Scott MacKenzie <irrational@poboxes.com> | 2005-11-07 04:00:33 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:49 -0500 |
commit | 3a59026ba111d85b1a86af0f1c4e5a8ef1242d82 (patch) | |
tree | 33aadf52d17ffaf5a3077550c1813f26f14d571d /drivers/video/intelfb/intelfbhw.c | |
parent | b8c49ef6aeef662e7920435012be8c2ecc41c30d (diff) |
[PATCH] intelfb: extend partial support of i915G to include i915GM
Add partial support for GMA900 within the i915GM chipset.
Signed-off-by: Scott MacKenzie <irrational@poboxes.com>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/video/intelfb/intelfbhw.c')
-rw-r--r-- | drivers/video/intelfb/intelfbhw.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/video/intelfb/intelfbhw.c b/drivers/video/intelfb/intelfbhw.c index 5bafc3c54db7..ac94c2e5ff85 100644 --- a/drivers/video/intelfb/intelfbhw.c +++ b/drivers/video/intelfb/intelfbhw.c | |||
@@ -99,6 +99,11 @@ intelfbhw_get_chipset(struct pci_dev *pdev, const char **name, int *chipset, | |||
99 | *chipset = INTEL_915G; | 99 | *chipset = INTEL_915G; |
100 | *mobile = 0; | 100 | *mobile = 0; |
101 | return 0; | 101 | return 0; |
102 | case PCI_DEVICE_ID_INTEL_915GM: | ||
103 | *name = "Intel(R) 915GM"; | ||
104 | *chipset = INTEL_915GM; | ||
105 | *mobile = 1; | ||
106 | return 0; | ||
102 | default: | 107 | default: |
103 | return 1; | 108 | return 1; |
104 | } | 109 | } |