https://jxself.org/git/linux-libre.git
Raw File
Tip revision: c49a873a01df66ba875ab51d8e43a185226c80ac authored by Jason Self on 09 December 2015, 18:43:26 UTC
Linux-libre 3.10.94-gnu
Tip revision: c49a873
agp.h
#ifndef AGP_H
#define AGP_H 1

#include <asm/io.h>

/* 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
back to top