wok annotate catalyst/stuff/catalyst-2.6.37.patch @ rev 9575
Up: xorg-fixesproto to 5.0.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Apr 12 11:16:48 2011 +0000 (2011-04-12) |
parents | |
children |
rev | line source |
---|---|
slaxemulator@8099 | 1 --- work.orig/common/lib/modules/fglrx/build_mod/firegl_public.c 2010-08-20 21:51:48.000000000 +0200 |
slaxemulator@8099 | 2 +++ work/common/lib/modules/fglrx/build_mod/firegl_public.c 2010-08-20 23:46:37.000000000 +0200 |
slaxemulator@8099 | 3 @@ -320,7 +320,11 @@ |
slaxemulator@8099 | 4 return firegl_release((KCL_IO_FILE_Handle)filp); |
slaxemulator@8099 | 5 } |
slaxemulator@8099 | 6 |
slaxemulator@8099 | 7 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) |
slaxemulator@8099 | 8 +int ip_firegl_ioctl(struct file* filp, unsigned int cmd, unsigned long arg) |
slaxemulator@8099 | 9 +#else |
slaxemulator@8099 | 10 int ip_firegl_ioctl(struct inode* inode, struct file* filp, unsigned int cmd, unsigned long arg) |
slaxemulator@8099 | 11 +#endif |
slaxemulator@8099 | 12 { |
slaxemulator@8099 | 13 return firegl_ioctl((KCL_IO_FILE_Handle)filp, cmd, arg); |
slaxemulator@8099 | 14 } |
slaxemulator@8099 | 15 @@ -407,7 +411,11 @@ |
slaxemulator@8099 | 16 #endif |
slaxemulator@8099 | 17 open: ip_firegl_open, |
slaxemulator@8099 | 18 release: ip_firegl_release, |
slaxemulator@8099 | 19 +#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36) |
slaxemulator@8099 | 20 + unlocked_ioctl: ip_firegl_ioctl, |
slaxemulator@8099 | 21 +#else |
slaxemulator@8099 | 22 ioctl: ip_firegl_ioctl, |
slaxemulator@8099 | 23 +#endif |
slaxemulator@8099 | 24 mmap: ip_firegl_mmap, |
slaxemulator@8099 | 25 |
slaxemulator@8099 | 26 write: ip_firegl_write, |