GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / sparc / include / asm / agp.h
blob70f52c1661bc11b4f7c9de697fb6a67fecfa8a97
1 #ifndef AGP_H
2 #define AGP_H 1
4 /* dummy for now */
6 #define map_page_into_agp(page)
7 #define unmap_page_from_agp(page)
8 #define flush_agp_cache() mb()
10 /* GATT allocation. Returns/accepts GATT kernel virtual address. */
11 #define alloc_gatt_pages(order) \
12 ((char *)__get_free_pages(GFP_KERNEL, (order)))
13 #define free_gatt_pages(table, order) \
14 free_pages((unsigned long)(table), (order))
16 #endif