diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-02-18 02:22:55 (GMT) |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-02-19 03:52:32 (GMT) |
commit | 087d8c7d0cc8a79e6bd6223f9b0018483124e769 (patch) | |
tree | 7b0719010305512fcf811c9e11d28f314d907d79 /arch/powerpc/include | |
parent | 47e3c9046bc884d4f727df00f0b6ec73fa387e50 (diff) | |
download | linux-fsl-qoriq-087d8c7d0cc8a79e6bd6223f9b0018483124e769.tar.xz |
powerpc: Convert feature_lock to raw_spinlock
feature_lock needs to be a real spinlock in RT. Convert it to
raw_spinlock.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include')
-rw-r--r-- | arch/powerpc/include/asm/pmac_feature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/pmac_feature.h b/arch/powerpc/include/asm/pmac_feature.h index 877c35a..00eedc5 100644 --- a/arch/powerpc/include/asm/pmac_feature.h +++ b/arch/powerpc/include/asm/pmac_feature.h @@ -378,7 +378,7 @@ extern struct macio_chip* macio_find(struct device_node* child, int type); * Those are exported by pmac feature for internal use by arch code * only like the platform function callbacks, do not use directly in drivers */ -extern spinlock_t feature_lock; +extern raw_spinlock_t feature_lock; extern struct device_node *uninorth_node; extern u32 __iomem *uninorth_base; |