summaryrefslogtreecommitdiff
path: root/shared/via_3d_reg.h
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2004-10-09 11:16:20 +0000
committerDave Airlie <airlied@linux.ie>2004-10-09 11:16:20 +0000
commitefcb9fb7ae3caad341bd8c82febf9d65b2a73933 (patch)
tree1583a28fed74bd84788dc31f393d3693cb0fb079 /shared/via_3d_reg.h
parentfec94a82748b3603da7239e39d247a9654765659 (diff)
fix up whitespacing in Kconfig
Diffstat (limited to 'shared/via_3d_reg.h')
0 files changed, 0 insertions, 0 deletions
ref='#n103'>103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
/**
 * \file drm_os_linux.h
 * OS abstraction macros.
 */


#include <linux/interrupt.h>	/* For task queue support */
#include <linux/delay.h>

/** File pointer type */
#define DRMFILE                         struct file *
/** Ioctl arguments */
#define DRM_IOCTL_ARGS			struct inode *inode, struct file *filp, unsigned int cmd, unsigned long data
#define DRM_ERR(d)			-(d)
/** Current process ID */
#define DRM_CURRENTPID			current->pid
#define DRM_UDELAY(d)			udelay(d)
#if LINUX_VERSION_CODE <= 0x020608 /* KERNEL_VERSION(2,6,8) */