Created
March 1, 2015 23:43
-
-
Save Brainiarc7/2359392974587dd76e2c to your computer and use it in GitHub Desktop.
Kernel patch to vgaarb.c to add 3D controller detection on Optimus notebooks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/drivers/gpu/vga/vgaarb.c b/drivers/gpu/vga/vgaarb.c | |
index 111d956..bd9a01f 100644 | |
--- a/drivers/gpu/vga/vgaarb.c | |
+++ b/drivers/gpu/vga/vgaarb.c | |
@@ -507,9 +507,11 @@ static bool vga_arbiter_add_pci_device(struct pci_dev *pdev) | |
struct pci_bus *bus; | |
struct pci_dev *bridge; | |
u16 cmd; | |
+ int pci_class = pdev->class >> 8; | |
/* Only deal with VGA class devices */ | |
- if ((pdev->class >> 8) != PCI_CLASS_DISPLAY_VGA) | |
+ if (pci_class != PCI_CLASS_DISPLAY_VGA && | |
+ pci_class != PCI_CLASS_DISPLAY_3D) | |
return false; | |
/* Allocate structure */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Useful in Hybrid graphics use-cases where: