aboutsummaryrefslogtreecommitdiffstats
path: root/arch/hexagon/include/asm/Kbuild
diff options
context:
space:
mode:
authorTim Chen <tim.c.chen@linux.intel.com>2014-01-21 18:36:16 -0500
committerIngo Molnar <mingo@kernel.org>2014-02-09 15:17:50 -0500
commitb119fa61d440fe0f5af504299ad506637585a8ca (patch)
tree27a1bc65806eef0ff2bd4c76b610dd772a7a1845 /arch/hexagon/include/asm/Kbuild
parent980f88e414418bf65569a3b62b08b07e6fc2f4c6 (diff)
locking/mcs: Order the header files in Kbuild of each architecture in alphabetical order
We perform a clean up of the Kbuid files in each architecture. We order the files in each Kbuild in alphabetical order by running the below script. for i in arch/*/include/asm/Kbuild do cat $i | gawk '/^generic-y/ { i = 3; do { for (; i <= NF; i++) { if ($i == "\\") { getline; i = 1; continue; } if ($i != "") hdr[$i] = $i; } break; } while (1); next; } // { print $0; } END { n = asort(hdr); for (i = 1; i <= n; i++) print "generic-y += " hdr[i]; }' > ${i}.sorted; mv ${i}.sorted $i; done Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Matthew R Wilcox <matthew.r.wilcox@intel.com> Cc: AswinChandramouleeswaran <aswin@hp.com> Cc: Dave Hansen <dave.hansen@intel.com> Cc: "Paul E.McKenney" <paulmck@linux.vnet.ibm.com> Cc: Scott J Norton <scott.norton@hp.com> Cc: Will Deacon <will.deacon@arm.com> Cc: "Figo.zhang" <figo1802@gmail.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Rik van Riel <riel@redhat.com> Cc: Waiman Long <waiman.long@hp.com> Cc: Peter Hurley <peter@hurleysoftware.com> Cc: Andrea Arcangeli <aarcange@redhat.com> Cc: Tim Chen <tim.c.chen@linux.intel.com> Cc: Alex Shi <alex.shi@linaro.org> Cc: Raghavendra K T <raghavendra.kt@linux.vnet.ibm.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: George Spelvin <linux@horizon.com> Cc: MichelLespinasse <walken@google.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Davidlohr Bueso <davidlohr.bueso@hp.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Peter Zijlstra <peterz@infradead.org> [ Fixed build bug. ] Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/hexagon/include/asm/Kbuild')
-rw-r--r--arch/hexagon/include/asm/Kbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/hexagon/include/asm/Kbuild b/arch/hexagon/include/asm/Kbuild
index 38ca45d3df1e..9f0eda48643a 100644
--- a/arch/hexagon/include/asm/Kbuild
+++ b/arch/hexagon/include/asm/Kbuild
@@ -25,14 +25,15 @@ generic-y += ipcbuf.h
25generic-y += irq_regs.h 25generic-y += irq_regs.h
26generic-y += kdebug.h 26generic-y += kdebug.h
27generic-y += kmap_types.h 27generic-y += kmap_types.h
28generic-y += local64.h
29generic-y += local.h 28generic-y += local.h
29generic-y += local64.h
30generic-y += mman.h 30generic-y += mman.h
31generic-y += msgbuf.h 31generic-y += msgbuf.h
32generic-y += pci.h 32generic-y += pci.h
33generic-y += percpu.h 33generic-y += percpu.h
34generic-y += poll.h 34generic-y += poll.h
35generic-y += posix_types.h 35generic-y += posix_types.h
36generic-y += preempt.h
36generic-y += resource.h 37generic-y += resource.h
37generic-y += rwsem.h 38generic-y += rwsem.h
38generic-y += scatterlist.h 39generic-y += scatterlist.h
@@ -45,8 +46,8 @@ generic-y += siginfo.h
45generic-y += sizes.h 46generic-y += sizes.h
46generic-y += socket.h 47generic-y += socket.h
47generic-y += sockios.h 48generic-y += sockios.h
48generic-y += statfs.h
49generic-y += stat.h 49generic-y += stat.h
50generic-y += statfs.h
50generic-y += termbits.h 51generic-y += termbits.h
51generic-y += termios.h 52generic-y += termios.h
52generic-y += topology.h 53generic-y += topology.h
@@ -55,4 +56,3 @@ generic-y += types.h
55generic-y += ucontext.h 56generic-y += ucontext.h
56generic-y += unaligned.h 57generic-y += unaligned.h
57generic-y += xor.h 58generic-y += xor.h
58generic-y += preempt.h