parent
4bdddf5715
commit
4c439ac4a7
|
@ -107,27 +107,6 @@
|
|||
#define IRQF_SHARED SA_SHIRQ
|
||||
#endif
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,10)
|
||||
static inline int remap_pfn_range(struct vm_area_struct *vma, unsigned long from, unsigned long pfn, unsigned long size, pgprot_t pgprot)
|
||||
{
|
||||
return remap_page_range(vma, from,
|
||||
pfn << PAGE_SHIFT,
|
||||
size,
|
||||
pgprot);
|
||||
}
|
||||
|
||||
static __inline__ void *kcalloc(size_t nmemb, size_t size, int flags)
|
||||
{
|
||||
void *addr;
|
||||
|
||||
addr = kmalloc(size * nmemb, flags);
|
||||
if (addr != NULL)
|
||||
memset((void *)addr, 0, size * nmemb);
|
||||
|
||||
return addr;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,16)
|
||||
#define mutex_lock down
|
||||
#define mutex_unlock up
|
||||
|
|
|
@ -73,7 +73,7 @@ static struct drm_driver driver = {
|
|||
.mmap = drm_mmap,
|
||||
.poll = drm_poll,
|
||||
.fasync = drm_fasync,
|
||||
#if defined(CONFIG_COMPAT) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
|
||||
#if defined(CONFIG_COMPAT)
|
||||
.compat_ioctl = mga_compat_ioctl,
|
||||
#endif
|
||||
},
|
||||
|
|
|
@ -70,7 +70,7 @@ static struct drm_driver driver = {
|
|||
.mmap = drm_mmap,
|
||||
.poll = drm_poll,
|
||||
.fasync = drm_fasync,
|
||||
#if defined(CONFIG_COMPAT) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
|
||||
#if defined(CONFIG_COMPAT)
|
||||
.compat_ioctl = nouveau_compat_ioctl,
|
||||
#endif
|
||||
},
|
||||
|
|
|
@ -68,7 +68,7 @@ static struct drm_driver driver = {
|
|||
.mmap = drm_mmap,
|
||||
.poll = drm_poll,
|
||||
.fasync = drm_fasync,
|
||||
#if defined(CONFIG_COMPAT) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
|
||||
#if defined(CONFIG_COMPAT)
|
||||
.compat_ioctl = r128_compat_ioctl,
|
||||
#endif
|
||||
},
|
||||
|
|
|
@ -114,7 +114,7 @@ static struct drm_driver driver = {
|
|||
.mmap = drm_mmap,
|
||||
.poll = drm_poll,
|
||||
.fasync = drm_fasync,
|
||||
#if defined(CONFIG_COMPAT) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
|
||||
#if defined(CONFIG_COMPAT)
|
||||
.compat_ioctl = radeon_compat_ioctl,
|
||||
#endif
|
||||
},
|
||||
|
|
|
@ -93,7 +93,7 @@ static struct drm_driver driver = {
|
|||
.mmap = drm_mmap,
|
||||
.poll = drm_poll,
|
||||
.fasync = drm_fasync,
|
||||
#if defined(CONFIG_COMPAT) && LINUX_VERSION_CODE > KERNEL_VERSION(2,6,9)
|
||||
#if defined(CONFIG_COMPAT)
|
||||
.compat_ioctl = xgi_compat_ioctl,
|
||||
#endif
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue