Changeset 587 for GPL/trunk/include/linux
- Timestamp:
- Jun 9, 2016, 10:38:13 PM (9 years ago)
- Location:
- GPL/trunk/include/linux
- Files:
-
- 2 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/include/linux/compiler-gcc3.h
r442 r587 6 6 #define inline __inline 7 7 #define INLINE inline 8 #define __attribute__ 8 #define __attribute__(a) 9 9 10 10 #if __GNUC_MINOR__ >= 1 && __GNUC_MINOR__ < 4 -
GPL/trunk/include/linux/config.h
r305 r587 3 3 #ifndef _LINUX_CONFIG_H 4 4 #define _LINUX_CONFIG_H 5 #include < sound/config.h>5 #include <config.h> 6 6 #endif -
GPL/trunk/include/linux/fs.h
r446 r587 8 8 * upper limit on files-per-process. 9 9 * 10 * Some programs (notably those using select()) may have to be 11 * recompiled to take full advantage of the new limits.. 10 * Some programs (notably those using select()) may have to be 11 * recompiled to take full advantage of the new limits.. 12 12 */ 13 13 … … 63 63 64 64 /* public flags for file_system_type */ 65 #define FS_REQUIRES_DEV 1 65 #define FS_REQUIRES_DEV 1 66 66 #define FS_NO_DCACHE 2 /* Only dcache the necessary things. */ 67 67 #define FS_NO_PRELIM 4 /* prevent preloading of dentries, even if … … 265 265 extern void kill_fasync(struct fasync_struct *, int, int); 266 266 267 #define fops_get(x) ( x)267 #define fops_get(x) ((struct file_operations *)x) 268 268 #define fops_put(x) do { ; } while (0) 269 269 -
GPL/trunk/include/linux/pnp.h
r441 r587 13 13 #ifdef __KERNEL__ 14 14 15 #ifndef TARGET_OS216 15 #include <linux/isapnp.h> 17 #else /* TARGET_OS2 */18 #include <sound/isapnp.h>19 #endif /* TARGET_OS2 */20 16 #include <linux/list.h> 21 17 #include <linux/pm.h> -
GPL/trunk/include/linux/workqueue.h
r444 r587 3 3 4 4 #include <linux/timer.h> 5 #include < sound/compat_22.h>5 #include <compat_22.h> 6 6 /* we know this is used below exactly once for at most one waiter */ 7 7
Note:
See TracChangeset
for help on using the changeset viewer.