diff options
author | Helge Deller | 2010-02-02 20:06:23 +0100 |
---|---|---|
committer | Kyle McMartin | 2010-03-06 23:54:10 +0100 |
commit | 1d747c7e7b754cacb9bc8d31854bdc3a58d70597 (patch) | |
tree | a995ed2c18b2a277889c628162c3597a7ec6e133 /arch/parisc | |
parent | parisc: add strict copy size checks (v2) (diff) | |
download | kernel-qcow2-linux-1d747c7e7b754cacb9bc8d31854bdc3a58d70597.tar.gz kernel-qcow2-linux-1d747c7e7b754cacb9bc8d31854bdc3a58d70597.tar.xz kernel-qcow2-linux-1d747c7e7b754cacb9bc8d31854bdc3a58d70597.zip |
parisc: drop unnecessary cast in __ldcw_align() macro
__ldcw_align() can directly access the slock member of struct arch_spinlock_t
instead of using an ugly cast.
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/include/asm/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/include/asm/system.h b/arch/parisc/include/asm/system.h index d91357bca5b4..4653c77bf9d1 100644 --- a/arch/parisc/include/asm/system.h +++ b/arch/parisc/include/asm/system.h @@ -160,7 +160,7 @@ static inline void set_eiem(unsigned long val) ldcd). */ #define __PA_LDCW_ALIGNMENT 4 -#define __ldcw_align(a) ((volatile unsigned int *)a) +#define __ldcw_align(a) (&(a)->slock) #define __LDCW "ldcw,co" #endif /*!CONFIG_PA20*/ |