diff options
Diffstat (limited to 'include/asm-x86/gart.h')
-rw-r--r-- | include/asm-x86/gart.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/asm-x86/gart.h b/include/asm-x86/gart.h index cdf4f78e081b..605edb39ef9e 100644 --- a/include/asm-x86/gart.h +++ b/include/asm-x86/gart.h | |||
@@ -1,5 +1,5 @@ | |||
1 | #ifndef _ASM_X8664_GART_H | 1 | #ifndef ASM_X86__GART_H |
2 | #define _ASM_X8664_GART_H 1 | 2 | #define ASM_X86__GART_H |
3 | 3 | ||
4 | #include <asm/e820.h> | 4 | #include <asm/e820.h> |
5 | 5 | ||
@@ -54,15 +54,15 @@ static inline int aperture_valid(u64 aper_base, u32 aper_size, u32 min_size) | |||
54 | return 0; | 54 | return 0; |
55 | 55 | ||
56 | if (aper_base + aper_size > 0x100000000ULL) { | 56 | if (aper_base + aper_size > 0x100000000ULL) { |
57 | printk(KERN_ERR "Aperture beyond 4GB. Ignoring.\n"); | 57 | printk(KERN_INFO "Aperture beyond 4GB. Ignoring.\n"); |
58 | return 0; | 58 | return 0; |
59 | } | 59 | } |
60 | if (e820_any_mapped(aper_base, aper_base + aper_size, E820_RAM)) { | 60 | if (e820_any_mapped(aper_base, aper_base + aper_size, E820_RAM)) { |
61 | printk(KERN_ERR "Aperture pointing to e820 RAM. Ignoring.\n"); | 61 | printk(KERN_INFO "Aperture pointing to e820 RAM. Ignoring.\n"); |
62 | return 0; | 62 | return 0; |
63 | } | 63 | } |
64 | if (aper_size < min_size) { | 64 | if (aper_size < min_size) { |
65 | printk(KERN_ERR "Aperture too small (%d MB) than (%d MB)\n", | 65 | printk(KERN_INFO "Aperture too small (%d MB) than (%d MB)\n", |
66 | aper_size>>20, min_size>>20); | 66 | aper_size>>20, min_size>>20); |
67 | return 0; | 67 | return 0; |
68 | } | 68 | } |
@@ -70,4 +70,4 @@ static inline int aperture_valid(u64 aper_base, u32 aper_size, u32 min_size) | |||
70 | return 1; | 70 | return 1; |
71 | } | 71 | } |
72 | 72 | ||
73 | #endif | 73 | #endif /* ASM_X86__GART_H */ |