Changeset 646
- Timestamp:
- Jan 16, 2021, 10:44:28 PM (5 years ago)
- Location:
- GPL/branches/uniaud32-next
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/include/sound/config.h
r615 r646 64 64 #include <linux/lockdep.h> 65 65 #include <linux/smp_lock.h> 66 #include "compat_22.h"67 66 68 67 #include <sound/asound.h> -
GPL/branches/uniaud32-next/include/linux/completion.h
r629 r646 3 3 4 4 #include <linux/wait.h> 5 #include <sound/compat_22.h> 5 6 6 /* 7 7 * struct completion - structure used to maintain state for a "completion" -
GPL/branches/uniaud32-next/include/linux/rwsem.h
r615 r646 3 3 #ifndef _LINUX_RWSEM_H 4 4 #define _LINUX_RWSEM_H 5 /* rw_semaphore - replaced with mutex */ 6 #define rw_semaphore semaphore 7 #define init_rwsem(x) init_MUTEX(x) 8 #define DECLARE_RWSEM(x) DECLARE_MUTEX(x) 9 #define down_read(x) down(x) 10 #define down_write(x) down(x) 11 #define up_read(x) up(x) 12 #define up_write(x) up(x) 13 5 14 static inline int down_write_trylock(struct rw_semaphore *sem) {return 0;} 6 #define init_rwsem(x) init_MUTEX(x)7 15 #endif /* _LINUX_RWSEM_H */ -
GPL/branches/uniaud32-next/include/linux/types.h
r629 r646 149 149 typedef u32 phys_addr_t; 150 150 typedef s64 int64_t; 151 152 #define DECLARE_BITMAP(name,bits) \ 153 unsigned long name[((bits)+BITS_PER_LONG-1)/BITS_PER_LONG] 154 151 155 #endif /* _LINUX_TYPES_H */ -
GPL/branches/uniaud32-next/include/linux/workqueue.h
r615 r646 3 3 4 4 #include <linux/timer.h> 5 #include <sound/compat_22.h>6 5 #include <linux/completion.h> 7 6
Note:
See TracChangeset
for help on using the changeset viewer.