diff options
author | David Howells <dhowells@redhat.com> | 2012-03-28 19:30:03 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-03-28 19:30:03 +0200 |
commit | 34484277b173d0af1bb00532a264940b57920429 (patch) | |
tree | d3cb2984acf58bfcd08a1f1a67c8e291272418a0 /include/asm-generic/system.h | |
parent | Disintegrate asm/system.h for Xtensa (diff) | |
download | linux-34484277b173d0af1bb00532a264940b57920429.tar.xz linux-34484277b173d0af1bb00532a264940b57920429.zip |
Make asm-generic/cmpxchg.h #include asm-generic/cmpxchg-local.h
Make asm-generic/cmpxchg.h #include asm-generic/cmpxchg-local.h as all arch
files that #include the former also #include the latter. See:
grep -rl asm-generic/cmpxchg-local[.]h arch/ | sort > b
grep -rl asm-generic/cmpxchg[.]h arch/ | sort > a
comm a b
This simplifies the disintegration of asm-generic/system.h for arches that
don't have their own.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to '')
-rw-r--r-- | include/asm-generic/system.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/asm-generic/system.h b/include/asm-generic/system.h index 215efa74f5a2..82cb53abb9f6 100644 --- a/include/asm-generic/system.h +++ b/include/asm-generic/system.h @@ -19,7 +19,6 @@ #include <linux/types.h> #include <linux/irqflags.h> -#include <asm/cmpxchg-local.h> #include <asm/cmpxchg.h> struct task_struct; |