diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 06:19:17 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-21 06:19:17 +0200 |
commit | 734b397cd14f3340394a8dd3266bec97d01f034b (patch) | |
tree | 0ac0ff92b1e8420992ab01af7fdf4459f59c9551 | |
parent | ipv6: Fix warning in addrconf code. (diff) | |
parent | gpu: re-order GPU subdirectory vs char for AGP vs DRM startup. (diff) | |
download | linux-734b397cd14f3340394a8dd3266bec97d01f034b.tar.xz linux-734b397cd14f3340394a8dd3266bec97d01f034b.zip |
Merge branch 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6
* 'drm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6:
gpu: re-order GPU subdirectory vs char for AGP vs DRM startup.
-rw-r--r-- | drivers/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index fda44679dffc..808e0ae66aa8 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -10,7 +10,6 @@ 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/ |