]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
More configcheck fixes.
authorRalf Baechle <ralf@linux-mips.org>
Sat, 29 Oct 2005 18:32:40 +0000 (19:32 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Sat, 29 Oct 2005 18:32:40 +0000 (19:32 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
include/asm-mips/mach-au1x00/au1xxx_psc.h
include/asm-mips/mmzone.h
include/asm-mips/spinlock.h

index 283519dfdec4899da14b19a118e5e26026ec75b9..8e5fb3c7da4da1a2e420bd172d53c2b828307a52 100644 (file)
@@ -33,6 +33,8 @@
 #ifndef _AU1000_PSC_H_
 #define _AU1000_PSC_H_
 
+#include <linux/config.h>
+
 /* The PSC base addresses.  */
 #ifdef CONFIG_SOC_AU1550
 #define PSC0_BASE_ADDR         0xb1a00000
index d721143dbd47596f4387c8ba72f9baa1153c4ef1..011caebac369c842d8dd99541688b8295d04340a 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef _ASM_MMZONE_H_
 #define _ASM_MMZONE_H_
 
+#include <linux/config.h>
 #include <asm/page.h>
 #include <mmzone.h>
 
index 7d1cc75a1cbb0f07bac30ea900114666eace6939..669b8e349ff29544fce6a35c91307950ba660f4a 100644 (file)
@@ -9,17 +9,16 @@
 #ifndef _ASM_SPINLOCK_H
 #define _ASM_SPINLOCK_H
 
-#include <linux/config.h>
 #include <asm/war.h>
 
 /*
  * Your basic SMP spinlocks, allowing only a single CPU anywhere
  */
 
-#define __raw_spin_is_locked(x)        ((x)->lock != 0)
+#define __raw_spin_is_locked(x)       ((x)->lock != 0)
 #define __raw_spin_lock_flags(lock, flags) __raw_spin_lock(lock)
 #define __raw_spin_unlock_wait(x) \
-               do { cpu_relax(); } while ((x)->lock)
+       do { cpu_relax(); } while ((x)->lock)
 
 /*
  * Simple spin lock operations.  There are two variants, one clears IRQ's