diff options
author | Milind Arun Choudhary | 2007-04-15 19:21:23 +0200 |
---|---|---|
committer | Tony Luck | 2007-05-08 21:00:39 +0200 |
commit | 8737d59579c5e61ea3d5da4bd63303159fd1cf7e (patch) | |
tree | afa05a729bc597e97688de3c70389fb9ade29389 /arch/ia64/kernel | |
parent | [IA64-SN2][KJ] mmtimer.c-kzalloc (diff) | |
download | kernel-qcow2-linux-8737d59579c5e61ea3d5da4bd63303159fd1cf7e.tar.gz kernel-qcow2-linux-8737d59579c5e61ea3d5da4bd63303159fd1cf7e.tar.xz kernel-qcow2-linux-8737d59579c5e61ea3d5da4bd63303159fd1cf7e.zip |
[IA64] SPIN_LOCK_UNLOCKED macro cleanup in arch/ia64
SPIN_LOCK_UNLOCKED macro cleanup, use __SPIN_LOCK_UNLOCKED instead.
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/traps.c | 6 | ||||
-rw-r--r-- | arch/ia64/kernel/unwind.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/ia64/kernel/traps.c b/arch/ia64/kernel/traps.c index 765cbe5ba6ae..cd5189f99629 100644 --- a/arch/ia64/kernel/traps.c +++ b/arch/ia64/kernel/traps.c @@ -59,9 +59,9 @@ die (const char *str, struct pt_regs *regs, long err) u32 lock_owner; int lock_owner_depth; } die = { - .lock = SPIN_LOCK_UNLOCKED, - .lock_owner = -1, - .lock_owner_depth = 0 + .lock = __SPIN_LOCK_UNLOCKED(die.lock), + .lock_owner = -1, + .lock_owner_depth = 0 }; static int die_counter; int cpu = get_cpu(); diff --git a/arch/ia64/kernel/unwind.c b/arch/ia64/kernel/unwind.c index 93d5a3b41f69..e3be21c7bd49 100644 --- a/arch/ia64/kernel/unwind.c +++ b/arch/ia64/kernel/unwind.c @@ -145,7 +145,7 @@ static struct { # endif } unw = { .tables = &unw.kernel_table, - .lock = SPIN_LOCK_UNLOCKED, + .lock = __SPIN_LOCK_UNLOCKED(unw.lock), .save_order = { UNW_REG_RP, UNW_REG_PFS, UNW_REG_PSP, UNW_REG_PR, UNW_REG_UNAT, UNW_REG_LC, UNW_REG_FPSR, UNW_REG_PRI_UNAT_GR |