https://jxself.org/git/linux-libre.git
Raw File
Tip revision: b554a7f0b47c42d7d0bf1ef4d8978b90dfd0d1f0 authored by Jason Self on 03 January 2012, 17:51:21 UTC
Linux-libre 2.6.32.52-gnu1
Tip revision: b554a7f
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