diff options
Diffstat (limited to 'drivers/video/intelfb/intelfbdrv.c')
-rw-r--r-- | drivers/video/intelfb/intelfbdrv.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/video/intelfb/intelfbdrv.c b/drivers/video/intelfb/intelfbdrv.c index 80a09344f1aa..0799b999b314 100644 --- a/drivers/video/intelfb/intelfbdrv.c +++ b/drivers/video/intelfb/intelfbdrv.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * intelfb | 2 | * intelfb |
3 | * | 3 | * |
4 | * Linux framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G | 4 | * Linux framebuffer driver for Intel(R) 830M/845G/852GM/855GM/865G/915G/915GM |
5 | * integrated graphics chips. | 5 | * integrated graphics chips. |
6 | * | 6 | * |
7 | * Copyright © 2002, 2003 David Dawes <dawes@xfree86.org> | 7 | * Copyright © 2002, 2003 David Dawes <dawes@xfree86.org> |
@@ -186,6 +186,7 @@ static struct pci_device_id intelfb_pci_table[] __devinitdata = { | |||
186 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_85XGM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_85XGM }, | 186 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_85XGM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_85XGM }, |
187 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_865G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_865G }, | 187 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_865G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_865G }, |
188 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915G }, | 188 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915G, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915G }, |
189 | { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_915GM, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA << 8, INTELFB_CLASS_MASK, INTEL_915GM }, | ||
189 | { 0, } | 190 | { 0, } |
190 | }; | 191 | }; |
191 | 192 | ||
@@ -549,10 +550,11 @@ intelfb_pci_register(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
549 | } | 550 | } |
550 | 551 | ||
551 | /* Set base addresses. */ | 552 | /* Set base addresses. */ |
552 | if (ent->device == PCI_DEVICE_ID_INTEL_915G) { | 553 | if ((ent->device == PCI_DEVICE_ID_INTEL_915G) || |
554 | (ent->device == PCI_DEVICE_ID_INTEL_915GM)) { | ||
553 | aperture_bar = 2; | 555 | aperture_bar = 2; |
554 | mmio_bar = 0; | 556 | mmio_bar = 0; |
555 | /* Disable HW cursor on 915G (not implemented yet) */ | 557 | /* Disable HW cursor on 915G/M (not implemented yet) */ |
556 | hwcursor = 0; | 558 | hwcursor = 0; |
557 | } | 559 | } |
558 | dinfo->aperture.physical = pci_resource_start(pdev, aperture_bar); | 560 | dinfo->aperture.physical = pci_resource_start(pdev, aperture_bar); |
@@ -1483,7 +1485,7 @@ intelfb_cursor(struct fb_info *info, struct fb_cursor *cursor) | |||
1483 | #endif | 1485 | #endif |
1484 | 1486 | ||
1485 | if (!dinfo->hwcursor) | 1487 | if (!dinfo->hwcursor) |
1486 | return soft_cursor(info, cursor); | 1488 | return -ENODEV; |
1487 | 1489 | ||
1488 | intelfbhw_cursor_hide(dinfo); | 1490 | intelfbhw_cursor_hide(dinfo); |
1489 | 1491 | ||