[PATCH] arm: spear: platsmp: fix lock definition

From: Felipe Balbi
Date: Thu Aug 01 2013 - 09:54:50 EST


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@xxxxxx>
---

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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/