ACPI: thinkpad-acpi: preserve radio state across shutdown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / spinlock_types_up.h
blob04135b0e198e31bfca6c3d1bea508d9af638f4b4
1 #ifndef __LINUX_SPINLOCK_TYPES_UP_H
2 #define __LINUX_SPINLOCK_TYPES_UP_H
4 #ifndef __LINUX_SPINLOCK_TYPES_H
5 # error "please don't include this file directly"
6 #endif
8 /*
9 * include/linux/spinlock_types_up.h - spinlock type definitions for UP
11 * portions Copyright 2005, Red Hat, Inc., Ingo Molnar
12 * Released under the General Public License (GPL).
15 #ifdef CONFIG_DEBUG_SPINLOCK
17 typedef struct {
18 volatile unsigned int slock;
19 } raw_spinlock_t;
21 #define __RAW_SPIN_LOCK_UNLOCKED { 1 }
23 #else
25 typedef struct { } raw_spinlock_t;
27 #define __RAW_SPIN_LOCK_UNLOCKED { }
29 #endif
31 typedef struct {
32 /* no debug version on UP */
33 } raw_rwlock_t;
35 #define __RAW_RW_LOCK_UNLOCKED { }
37 #endif /* __LINUX_SPINLOCK_TYPES_UP_H */