diff options
Diffstat (limited to 'zarb-ml/mageia-dev/attachments/20120322/9661a504/attachment.bin')
-rw-r--r-- | zarb-ml/mageia-dev/attachments/20120322/9661a504/attachment.bin | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/attachments/20120322/9661a504/attachment.bin b/zarb-ml/mageia-dev/attachments/20120322/9661a504/attachment.bin new file mode 100644 index 000000000..7af90e492 --- /dev/null +++ b/zarb-ml/mageia-dev/attachments/20120322/9661a504/attachment.bin @@ -0,0 +1,36 @@ +>From 9f04e51293b130474504216a477bb2a73cbf59e1 Mon Sep 17 00:00:00 2001 +From: Anssi Hannula <anssi.hannula@iki.fi> +Date: Thu, 22 Mar 2012 22:29:11 +0200 +Subject: [PATCH] ata: prefer ata drivers over ide drivers when both are built + +Currently the old IDE drivers are preferred over ATA drivers when both +are built, since ide/ is listed first in drivers/Makefile and therefore +the IDE drivers end up before ATA drivers in modules.order which is used +by depmod/modprobe for module ordering. + +Change it so that ATA drivers are preferred over IDE driver by moving +the ide/ entry under ata/ in drivers/Makefile. + +Signed-off-by: Anssi Hannula <anssi.hannula@iki.fi> +--- + drivers/Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/drivers/Makefile b/drivers/Makefile +index 932e8bf..e8df3d0 100644 +--- a/drivers/Makefile ++++ b/drivers/Makefile +@@ -47,9 +47,9 @@ obj-$(CONFIG_PARPORT) += parport/ + obj-y += base/ block/ misc/ mfd/ nfc/ + obj-$(CONFIG_NUBUS) += nubus/ + obj-y += macintosh/ +-obj-$(CONFIG_IDE) += ide/ + obj-$(CONFIG_SCSI) += scsi/ + obj-$(CONFIG_ATA) += ata/ ++obj-$(CONFIG_IDE) += ide/ + obj-$(CONFIG_TARGET_CORE) += target/ + obj-$(CONFIG_MTD) += mtd/ + obj-$(CONFIG_SPI) += spi/ +-- +1.7.9.3 + |