Changeset 499 for GPL/branches/uniaud32-2.1.x/include/linux
- Timestamp:
- Jul 5, 2010, 11:51:20 AM (15 years ago)
- Location:
- GPL/branches/uniaud32-2.1.x/include/linux
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-2.1.x/include/linux/dmi.h
r476 r499 4 4 #define dmi_find_device(a, b, c) NULL 5 5 #define DMI_DEV_TYPE_OEM_STRING -2 6 #endif _LINUX_DMI_H7 6 7 struct dmi_device { 8 struct list_head list; 9 int type; 10 const char *name; 11 void *device_data; /* Type specific data */ 12 }; 13 14 #endif /* _LINUX_DMI_H */ 15 -
GPL/branches/uniaud32-2.1.x/include/linux/fs.h
r446 r499 273 273 #define imajor(x) major((x)->i_rdev) 274 274 275 #define no_llseek NULL 276 #define nonseekable_open(i,f) 0 277 275 278 #endif /* _LINUX_FS_H */ -
GPL/branches/uniaud32-2.1.x/include/linux/gcd.h
r487 r499 1 1 #ifndef _LINUX_GCD_H 2 2 #define _LINUX_GCD_H 3 3 unsigned long gcd(unsigned long a, unsigned long b); 4 4 #endif /* _LINUX_GCD_H */ -
GPL/branches/uniaud32-2.1.x/include/linux/init.h
r441 r499 138 138 #define __devexit_p(x) x 139 139 140 /* subsys_initcall() wrapper */ 141 #define subsys_initcall(x) module_init(x) 142 140 143 #endif /* _LINUX_INIT_H */ -
GPL/branches/uniaud32-2.1.x/include/linux/kernel.h
r442 r499 102 102 #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16)) 103 103 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) 104 int strict_strtoul(const char *, unsigned int, unsigned long *); 104 105 105 106 #endif -
GPL/branches/uniaud32-2.1.x/include/linux/log2.h
r305 r499 1 /* $Id: log2.h,v 1.1.1.1 2003/07/02 13:57:00 eleph Exp $ */2 3 1 #ifndef _LINUX_LOG2_H 4 2 #define _LINUX_LOG2_H -
GPL/branches/uniaud32-2.1.x/include/linux/mm.h
r441 r499 173 173 #define SetPageReserved(a) a 174 174 #define ClearPageReserved(a) a 175 175 struct page *vmalloc_to_page(void *addr); 176 176 #endif -
GPL/branches/uniaud32-2.1.x/include/linux/module.h
r442 r499 49 49 #define MODULE_PARM_DESC(var,desc) 50 50 #define MODULE_LICENSE(a) 51 #define EXPORT_SYMBOL_GPL(a) 51 52 #else 52 53 #define MODULE_PARM(var,type) \ -
GPL/branches/uniaud32-2.1.x/include/linux/pci.h
r479 r499 714 714 PCI_ANY_ID, PCI_ANY_ID, 0, 0 715 715 716 #define pci_clear_master(x) 717 718 /* originally it's __devinitconst but we use __devinitdata to be compatible 719 * with older kernels 720 */ 721 #define DEFINE_PCI_DEVICE_TABLE(_table) \ 722 const struct pci_device_id _table[] __devinitdata 723 716 724 #endif /* LINUX_PCI_H */ -
GPL/branches/uniaud32-2.1.x/include/linux/types.h
r442 r499 138 138 typedef unsigned int fmode_t; 139 139 140 typedef int _Bool; 141 typedef _Bool bool; 142 140 143 #endif /* _LINUX_TYPES_H */ -
GPL/branches/uniaud32-2.1.x/include/linux/vmalloc.h
r32 r499 5 5 //#include <linux/mm.h> 6 6 7 //#include <asm/pgtable.h> 7 #include <asm/page.h> 8 8 9 9 10 struct vm_struct { -
GPL/branches/uniaud32-2.1.x/include/linux/workqueue.h
r444 r499 54 54 #undef INIT_WORK 55 55 #define INIT_WORK(w,f) snd_INIT_WORK(w,f) 56 #define INIT_DELAYED_WORK(_work, _func) INIT_WORK(&(_work)->work, _func) 57 #define work_pending(work) test_bit(0, &(work)->pending) 58 #define delayed_work_pending(w) work_pending(&(w)->work) 59 #define schedule_delayed_work(work, delay) queue_delayed_work(NULL, (work), (delay)) 60 56 61 #define create_singlethread_workqueue(name) create_workqueue(name) 57 62
Note:
See TracChangeset
for help on using the changeset viewer.