]> git.proxmox.com Git - mirror_ubuntu-impish-kernel.git/commitdiff
UBUNTU: SAUCE: Clear Linux: Initialize ata before graphics
authorArjan van de Ven <arjan@linux.intel.com>
Fri, 3 Jun 2016 04:36:32 +0000 (23:36 -0500)
committerAndrea Righi <andrea.righi@canonical.com>
Mon, 28 Jun 2021 06:03:41 +0000 (08:03 +0200)
ATA init is the long pole in the boot process, and its asynchronous.
move the graphics init after it so that ata and graphics initialize
in parallel

Signed-off-by: Tim Gardner <tim.gardner@canonical.com>
drivers/Makefile

index 5a6d613e868d3f864a44e1826817e537b8351c3e..6fc1b1db4a611927f8852213e625f59a59115e2f 100644 (file)
@@ -60,14 +60,9 @@ obj-y                                += char/
 # iommu/ comes before gpu as gpu are using iommu controllers
 obj-y                          += iommu/
 
-# gpu/ comes after char for AGP vs DRM startup and after iommu
-obj-y                          += gpu/
 
 obj-$(CONFIG_CONNECTOR)                += connector/
 
-# i810fb and intelfb depend on char/agp/
-obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
-obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
 
 obj-$(CONFIG_PARPORT)          += parport/
 obj-$(CONFIG_NVM)              += lightnvm/
@@ -82,6 +77,12 @@ obj-$(CONFIG_IDE)            += ide/
 obj-y                          += scsi/
 obj-y                          += nvme/
 obj-$(CONFIG_ATA)              += ata/
+
+# gpu/ comes after char for AGP vs DRM startup and after iommu
+obj-y                          += gpu/
+# i810fb and intelfb depend on char/agp/
+obj-$(CONFIG_FB_I810)           += video/fbdev/i810/
+obj-$(CONFIG_FB_INTEL)          += video/fbdev/intelfb/
 obj-$(CONFIG_TARGET_CORE)      += target/
 obj-$(CONFIG_MTD)              += mtd/
 obj-$(CONFIG_SPI)              += spi/