The patch titled Fix for arch/x86_64/pci/Makefile CFLAGS has been removed from the -mm tree. Its filename is fix-for-arch-x86_64-pci-makefile-cflags.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Fix for arch/x86_64/pci/Makefile CFLAGS From: Corey Minyard <minyard@xxxxxxx> The arch/x86_64/pci directory was giving problems in a wierd cross-compile environment. The exact cause is unknown, but the Makefile used CFLAGS instead of EXTRA_CFLAGS. From what I can tell from Documentation/kbuild/makefiles.txt, CFLAGS should not be used for this, it should be EXTRA_CFLAGS. And it solves the cross-compile problem. Signed-off-by: Corey Minyard <cminyard@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxx> Cc: Vojtech Pavlik <vojtech@xxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/pci/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/pci/Makefile~fix-for-arch-x86_64-pci-makefile-cflags arch/x86_64/pci/Makefile --- a/arch/x86_64/pci/Makefile~fix-for-arch-x86_64-pci-makefile-cflags +++ a/arch/x86_64/pci/Makefile @@ -3,7 +3,7 @@ # # Reuse the i386 PCI subsystem # -CFLAGS += -Iarch/i386/pci +EXTRA_CFLAGS += -Iarch/i386/pci obj-y := i386.o obj-$(CONFIG_PCI_DIRECT)+= direct.o _ Patches currently in -mm which might be from minyard@xxxxxxx are - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html