diff options
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index fda44679dff..54ec5e718c0 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -5,12 +5,11 @@ # Rewritten to use lists instead of if-statements. # -obj-$(CONFIG_HAVE_GPIO_LIB) += gpio/ +obj-y += gpio/ obj-$(CONFIG_PCI) += pci/ obj-$(CONFIG_PARISC) += parisc/ obj-$(CONFIG_RAPIDIO) += rapidio/ obj-y += video/ -obj-y += gpu/ obj-$(CONFIG_ACPI) += acpi/ # PnP must come after ACPI since it will eventually need to check if acpi # was used and do nothing if so @@ -23,6 +22,9 @@ obj-$(CONFIG_XEN) += xen/ # default. obj-y += char/ +# gpu/ comes after char for AGP vs DRM startup +obj-y += gpu/ + obj-$(CONFIG_CONNECTOR) += connector/ # i810fb and intelfb depend on char/agp/ |