The patch titled
Fix modular AGPGART (ia64 allmodconfig)
has been added to the -mm tree. Its filename is
fix-modular-agpgart-ia64-allmodconfig.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: Fix modular AGPGART (ia64 allmodconfig)
From: Zwane Mwaikambo <[EMAIL PROTECTED]>
My previous compat AGP patch broke modular AGPGART.
Test built on;
i386 CONFIG_AGP=y,m
x86_64 CONFIG_AGP=y
ia64 CONFIG_AGP=m
Signed-off-by: Zwane Mwaikambo <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/char/agp/Makefile | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff -puN drivers/char/agp/Makefile~fix-modular-agpgart-ia64-allmodconfig
drivers/char/agp/Makefile
--- a/drivers/char/agp/Makefile~fix-modular-agpgart-ia64-allmodconfig
+++ a/drivers/char/agp/Makefile
@@ -1,7 +1,10 @@
agpgart-y := backend.o frontend.o generic.o isoch.o
+ifeq ($(CONFIG_COMPAT),y)
+agpgart-y += compat_ioctl.o
+endif
+
obj-$(CONFIG_AGP) += agpgart.o
-obj-$(CONFIG_COMPAT) += compat_ioctl.o
obj-$(CONFIG_AGP_ALI) += ali-agp.o
obj-$(CONFIG_AGP_ATI) += ati-agp.o
obj-$(CONFIG_AGP_AMD) += amd-k7-agp.o
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-agpgart.patch
fix-modular-agpgart-ia64-allmodconfig.patch
fix-mtrr-compat-ioctl.patch
x86-dont-probe-for-ddc-on-vbe12.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html