https://jxself.org/git/linux-libre.git
Raw File
Tip revision: c311535ea528a547143da7de6ac304a8b11e3cb4 authored by Jason Self on 10 February 2017, 10:18:05 UTC
Linux-libre 3.10.105-gnu
Tip revision: c311535
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