diff options
author | Dave Airlie <airlied@redhat.com> | 2008-07-21 08:42:36 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-07-21 08:42:49 +1000 |
commit | e6b51632b3579d96ce5aa1b3efdeceedd2921a2c (patch) | |
tree | e6b00e149dd2da968527fa2195bdbae9bf6d2746 /drivers/Makefile | |
parent | 5b664cb235e97afbf34db9c4d77f08ebd725335e (diff) | |
download | linux-3.10-e6b51632b3579d96ce5aa1b3efdeceedd2921a2c.tar.gz linux-3.10-e6b51632b3579d96ce5aa1b3efdeceedd2921a2c.tar.bz2 linux-3.10-e6b51632b3579d96ce5aa1b3efdeceedd2921a2c.zip |
gpu: re-order GPU subdirectory vs char for AGP vs DRM startup.
Signed-off-by: Dave Airlie <airlied@linux.ie>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index fda44679dff..808e0ae66aa 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/ |