[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1375365264-10135-1-git-send-email-balbi@ti.com>
Date: Thu, 1 Aug 2013 16:54:24 +0300
From: Felipe Balbi <balbi@...com>
To: Thomas Gleixner <tglx@...utronix.de>
CC: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
<linux-rt-users@...r.kernel.org>,
Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
Felipe Balbi <balbi@...com>
Subject: [PATCH] arm: spear: platsmp: fix lock definition
raw_spin_{lock,unlock}() functions, we must
pass a raw_spinlock_t as argument.
Previous patch converting ARM boot_lock to
raw_spinlock_t missed this one spot. Fix it.
Signed-off-by: Felipe Balbi <balbi@...com>
---
compile tested only, I don't have any spear boards.
But at least solves the argument error compile warnings.
arch/arm/mach-spear/platsmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-spear/platsmp.c b/arch/arm/mach-spear/platsmp.c
index 382eef6..ec5437d 100644
--- a/arch/arm/mach-spear/platsmp.c
+++ b/arch/arm/mach-spear/platsmp.c
@@ -20,7 +20,7 @@
#include <mach/spear.h>
#include "generic.h"
-static DEFINE_SPINLOCK(boot_lock);
+static DEFINE_RAW_SPINLOCK(boot_lock);
static void __iomem *scu_base = IOMEM(VA_SCU_BASE);
--
1.8.3.4.840.g6a90778
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists