diff options
| author | Andi Kleen <ak@suse.de> | 2006-05-30 16:47:48 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-05-30 23:31:05 -0400 |
| commit | dc9a719528d782777b86936b817cc0913d5f0b42 (patch) | |
| tree | ee7fb8f042a90a1a9ba55f16ddfd8fd6f1879220 | |
| parent | 6ae53cd496d36db5f25e6f84b8b9fe7e675999a1 (diff) | |
[PATCH] x86_64: Fix no IOMMU warning in PCI-GART driver
Complaining about the IOMMU not compiled in doesn't make sense
here because it is clearly compiled in.
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | arch/x86_64/kernel/pci-gart.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/x86_64/kernel/pci-gart.c b/arch/x86_64/kernel/pci-gart.c index 2480d3f08a47..82a7c9bfdfa0 100644 --- a/arch/x86_64/kernel/pci-gart.c +++ b/arch/x86_64/kernel/pci-gart.c | |||
| @@ -631,10 +631,8 @@ static int __init pci_iommu_init(void) | |||
| 631 | printk(KERN_INFO "PCI-DMA: Disabling IOMMU.\n"); | 631 | printk(KERN_INFO "PCI-DMA: Disabling IOMMU.\n"); |
| 632 | if (end_pfn > MAX_DMA32_PFN) { | 632 | if (end_pfn > MAX_DMA32_PFN) { |
| 633 | printk(KERN_ERR "WARNING more than 4GB of memory " | 633 | printk(KERN_ERR "WARNING more than 4GB of memory " |
| 634 | "but IOMMU not compiled in.\n" | 634 | "but IOMMU not available.\n" |
| 635 | KERN_ERR "WARNING 32bit PCI may malfunction.\n" | 635 | KERN_ERR "WARNING 32bit PCI may malfunction.\n"); |
| 636 | KERN_ERR "You might want to enable " | ||
| 637 | "CONFIG_GART_IOMMU\n"); | ||
| 638 | } | 636 | } |
| 639 | return -1; | 637 | return -1; |
| 640 | } | 638 | } |
