diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/agp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/agp.h b/include/asm-x86/agp.h index 62df2a9e7130..f6df72561832 100644 --- a/include/asm-x86/agp.h +++ b/include/asm-x86/agp.h | |||
@@ -16,8 +16,8 @@ | |||
16 | * Caller's responsibility to call global_flush_tlb() for performance | 16 | * Caller's responsibility to call global_flush_tlb() for performance |
17 | * reasons | 17 | * reasons |
18 | */ | 18 | */ |
19 | #define map_page_into_agp(page) change_page_attr(page, 1, PAGE_KERNEL_NOCACHE) | 19 | #define map_page_into_agp(page) set_pages_uc(page, 1) |
20 | #define unmap_page_from_agp(page) change_page_attr(page, 1, PAGE_KERNEL) | 20 | #define unmap_page_from_agp(page) set_pages_wb(page, 1) |
21 | #define flush_agp_mappings() global_flush_tlb() | 21 | #define flush_agp_mappings() global_flush_tlb() |
22 | 22 | ||
23 | /* | 23 | /* |