Release 4.14 arch/sh/include/asm/spinlock_types.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_SH_SPINLOCK_TYPES_H
#define __ASM_SH_SPINLOCK_TYPES_H
#ifndef __LINUX_SPINLOCK_TYPES_H
# error "please don't include this file directly"
#endif
typedef struct {
volatile unsigned int lock;
} arch_spinlock_t;
#define __ARCH_SPIN_LOCK_UNLOCKED { 1 }
typedef struct {
volatile unsigned int lock;
} arch_rwlock_t;
#define RW_LOCK_BIAS 0x01000000
#define __ARCH_RW_LOCK_UNLOCKED { RW_LOCK_BIAS }
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ingo Molnar | 40 | 78.43% | 1 | 14.29% |
Paul Mundt | 5 | 9.80% | 1 | 14.29% |
Thomas Gleixner | 4 | 7.84% | 3 | 42.86% |
Greg Kroah-Hartman | 1 | 1.96% | 1 | 14.29% |
Evgeniy Polyakov | 1 | 1.96% | 1 | 14.29% |
Total | 51 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.