Changeset 694 for GPL/branches/uniaud32-next/include/linux
- Timestamp:
- Aug 15, 2021, 1:07:08 AM (4 years ago)
- Location:
- GPL/branches/uniaud32-next/include/linux
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/include/linux/kmod.h
r32 r694 3 3 #ifndef _LINUX_KMOD_H 4 4 #define _LINUX_KMOD_H 5 #include <asm/errno.h> 6 static inline int request_module(const char *name, ...) { return -ENOSYS; } 5 7 6 8 #endif /* _LINUX_KMOD_H */ -
GPL/branches/uniaud32-next/include/linux/moduleparam.h
r647 r694 62 62 ulong, charp, bool or invbool, or XXX if you define param_get_XXX, 63 63 param_set_XXX and param_check_XXX. */ 64 #define module_param_named(name, value, type, perm) \ 65 param_check_##type(name, &(value)); \ 66 module_param_call(name, param_set_##type, param_get_##type, &value, perm) 64 #define module_param_named(name, value, type, perm) 67 65 68 66 #ifndef TARGET_OS2 -
GPL/branches/uniaud32-next/include/linux/rwsem.h
r647 r694 14 14 #define up_read(x) up(x) 15 15 #define up_write(x) up(x) 16 #define downgrade_write 16 17 17 18 static inline int down_write_trylock(struct rw_semaphore *sem) {return 0;} -
GPL/branches/uniaud32-next/include/linux/slab.h
r692 r694 116 116 krealloc_array(void *p, size_t new_n, size_t new_size, gfp_t flags) 117 117 { 118 size_t bytes;118 // size_t bytes; 119 119 120 120 // if (check_mul_overflow(new_n, new_size, &bytes)) 121 121 // return NULL; 122 122 123 return krealloc(p, bytes, flags);123 return krealloc(p, new_n*new_size, flags); 124 124 } 125 125
Note:
See TracChangeset
for help on using the changeset viewer.
