Disable aperture pci region check in amd64 AGP driver One report that it rejects aperture in memory allocated by aperture.c Cc: davej@redhat.com Signed-off-by: Andi Kleen --- drivers/char/agp/amd64-agp.c | 2 ++ 1 files changed, 2 insertions(+) Index: linux/drivers/char/agp/amd64-agp.c =================================================================== --- linux.orig/drivers/char/agp/amd64-agp.c +++ linux/drivers/char/agp/amd64-agp.c @@ -295,6 +295,7 @@ static int __devinit aperture_valid(u64 } } +#if 0 /* Request the Aperture. This catches cases when someone else already put a mapping in there - happens with some very broken BIOS @@ -305,6 +306,7 @@ static int __devinit aperture_valid(u64 printk(KERN_ERR PFX "Aperture conflicts with PCI mapping.\n"); return 0; } +#endif return 1; }