summaryrefslogblamecommitdiffstats
path: root/include/asm-sparc/spinlock_types.h
blob: 37cbe01c585b5c9e91bdab7c013946bf11b87e65 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                 
                                    










                                             
#ifndef __SPARC_SPINLOCK_TYPES_H
#define __SPARC_SPINLOCK_TYPES_H

#ifndef __LINUX_SPINLOCK_TYPES_H
# error "please don't include this file directly"
#endif

typedef struct {
	volatile unsigned char lock;
} raw_spinlock_t;

#define __RAW_SPIN_LOCK_UNLOCKED	{ 0 }

typedef struct {
	volatile unsigned int lock;
} raw_rwlock_t;

#define __RAW_RW_LOCK_UNLOCKED		{ 0 }

#endif