mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 19:50:12 +01:00
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
|
|
#ifdef __alpha__
|
||
|
|
/* add include of current.h so that "current" is defined
|
||
|
|
* before static inline funcs in wait.h. Doing this so we
|
||
|
|
* can build the DRM (part of PI DRI). 4/21/2000 S + B */
|
||
|
|
#include <asm/current.h>
|
||
|
|
#endif /* __alpha__ */
|
||
|
|
#include <linux/config.h>
|
||
|
|
#include <linux/module.h>
|
||
|
|
#include <linux/kernel.h>
|
||
|
|
#include <linux/miscdevice.h>
|
||
|
|
#include <linux/fs.h>
|
||
|
|
#include <linux/proc_fs.h>
|
||
|
|
#include <linux/init.h>
|
||
|
|
#include <linux/file.h>
|
||
|
|
#include <linux/pci.h>
|
||
|
|
#include <linux/wrapper.h>
|
||
|
|
#include <linux/version.h>
|
||
|
|
#include <linux/sched.h>
|
||
|
|
#include <linux/smp_lock.h> /* For (un)lock_kernel */
|
||
|
|
#include <linux/mm.h>
|
||
|
|
#if defined(__alpha__) || defined(__powerpc__)
|
||
|
|
#include <asm/pgtable.h> /* For pte_wrprotect */
|
||
|
|
#endif
|
||
|
|
#include <asm/io.h>
|
||
|
|
#include <asm/mman.h>
|
||
|
|
#include <asm/uaccess.h>
|
||
|
|
#ifdef CONFIG_MTRR
|
||
|
|
#include <asm/mtrr.h>
|
||
|
|
#endif
|
||
|
|
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
||
|
|
#include <linux/types.h>
|
||
|
|
#include <linux/agp_backend.h>
|
||
|
|
#endif
|
||
|
|
#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
|
||
|
|
#include <linux/tqueue.h>
|
||
|
|
#include <linux/poll.h>
|
||
|
|
#endif
|
||
|
|
#if LINUX_VERSION_CODE < 0x020400
|
||
|
|
#include "compat-pre24.h"
|
||
|
|
#endif
|
||
|
|
#include <asm/pgalloc.h>
|