mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 16:23:20 +00:00 
			
		
		
		
	 6a12235c7d
			
		
	
	
		6a12235c7d
		
	
	
	
	
		
			
			There seems to be no reason for these -- they're a 1:1 mapping on all platforms. Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			395 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef AGP_H
 | |
| #define AGP_H 1
 | |
| 
 | |
| /* dummy for now */
 | |
| 
 | |
| #define map_page_into_agp(page)
 | |
| #define unmap_page_from_agp(page)
 | |
| #define flush_agp_cache() mb()
 | |
| 
 | |
| /* GATT allocation. Returns/accepts GATT kernel virtual address. */
 | |
| #define alloc_gatt_pages(order)		\
 | |
| 	((char *)__get_free_pages(GFP_KERNEL, (order)))
 | |
| #define free_gatt_pages(table, order)	\
 | |
| 	free_pages((unsigned long)(table), (order))
 | |
| 
 | |
| #endif
 |