diff options
| author | David Woodhouse <dwmw2@infradead.org> | 2006-09-19 07:43:58 -0400 |
|---|---|---|
| committer | David Woodhouse <dwmw2@infradead.org> | 2006-09-19 07:43:58 -0400 |
| commit | fadcfa33b6319a5faf8af2287f08bf93a7f926b6 (patch) | |
| tree | 367e931ec64a88c20a4d15c351d4c7dbb1b7adf1 | |
| parent | 47a5c6fa0e204a2b63309c648bb2fde36836c826 (diff) | |
[HEADERS] One line per header in Kbuild files to reduce conflicts
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
29 files changed, 721 insertions, 159 deletions
diff --git a/include/Kbuild b/include/Kbuild index cb2534800b19..2d03f995865f 100644 --- a/include/Kbuild +++ b/include/Kbuild | |||
| @@ -1,2 +1,9 @@ | |||
| 1 | header-y += asm-generic/ linux/ scsi/ sound/ mtd/ rdma/ video/ | 1 | header-y += asm-generic/ |
| 2 | header-y += asm-$(ARCH)/ | 2 | header-y += linux/ |
| 3 | header-y += scsi/ | ||
| 4 | header-y += sound/ | ||
| 5 | header-y += mtd/ | ||
| 6 | header-y += rdma/ | ||
| 7 | header-y += video/ | ||
| 8 | |||
| 9 | header-y += asm-$(ARCH)/ | ||
diff --git a/include/asm-alpha/Kbuild b/include/asm-alpha/Kbuild index 2b06b3bad5ff..b7c8f188b313 100644 --- a/include/asm-alpha/Kbuild +++ b/include/asm-alpha/Kbuild | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | unifdef-y += console.h fpu.h sysinfo.h compiler.h | 3 | header-y += gentrap.h |
| 4 | header-y += regdef.h | ||
| 5 | header-y += pal.h | ||
| 6 | header-y += reg.h | ||
| 4 | 7 | ||
| 5 | header-y += gentrap.h regdef.h pal.h reg.h | 8 | unifdef-y += console.h |
| 9 | unifdef-y += fpu.h | ||
| 10 | unifdef-y += sysinfo.h | ||
| 11 | unifdef-y += compiler.h | ||
diff --git a/include/asm-generic/Kbuild b/include/asm-generic/Kbuild index 70594b275a6e..3c06be381701 100644 --- a/include/asm-generic/Kbuild +++ b/include/asm-generic/Kbuild | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | header-y += atomic.h errno-base.h errno.h fcntl.h ioctl.h ipc.h mman.h \ | 1 | header-y += atomic.h |
| 2 | signal.h statfs.h | 2 | header-y += errno-base.h |
| 3 | unifdef-y := resource.h siginfo.h | 3 | header-y += errno.h |
| 4 | header-y += fcntl.h | ||
| 5 | header-y += ioctl.h | ||
| 6 | header-y += ipc.h | ||
| 7 | header-y += mman.h | ||
| 8 | header-y += signal.h | ||
| 9 | header-y += statfs.h | ||
| 10 | |||
| 11 | unifdef-y += resource.h | ||
| 12 | unifdef-y += siginfo.h | ||
diff --git a/include/asm-generic/Kbuild.asm b/include/asm-generic/Kbuild.asm index c00de6028fa8..a84c3d88a189 100644 --- a/include/asm-generic/Kbuild.asm +++ b/include/asm-generic/Kbuild.asm | |||
| @@ -1,8 +1,34 @@ | |||
| 1 | unifdef-y += a.out.h auxvec.h byteorder.h errno.h fcntl.h ioctl.h \ | 1 | unifdef-y += a.out.h |
| 2 | ioctls.h ipcbuf.h mman.h msgbuf.h param.h poll.h \ | 2 | unifdef-y += auxvec.h |
| 3 | posix_types.h ptrace.h resource.h sembuf.h shmbuf.h shmparam.h \ | 3 | unifdef-y += byteorder.h |
| 4 | sigcontext.h siginfo.h signal.h socket.h sockios.h stat.h \ | 4 | unifdef-y += errno.h |
| 5 | statfs.h termbits.h termios.h types.h unistd.h user.h | 5 | unifdef-y += fcntl.h |
| 6 | unifdef-y += ioctl.h | ||
| 7 | unifdef-y += ioctls.h | ||
| 8 | unifdef-y += ipcbuf.h | ||
| 9 | unifdef-y += mman.h | ||
| 10 | unifdef-y += msgbuf.h | ||
| 11 | unifdef-y += param.h | ||
| 12 | unifdef-y += poll.h | ||
| 13 | unifdef-y += posix_types.h | ||
| 14 | unifdef-y += ptrace.h | ||
| 15 | unifdef-y += resource.h | ||
| 16 | unifdef-y += sembuf.h | ||
| 17 | unifdef-y += shmbuf.h | ||
| 18 | unifdef-y += sigcontext.h | ||
| 19 | unifdef-y += siginfo.h | ||
| 20 | unifdef-y += signal.h | ||
| 21 | unifdef-y += socket.h | ||
| 22 | unifdef-y += sockios.h | ||
| 23 | unifdef-y += stat.h | ||
| 24 | unifdef-y += statfs.h | ||
| 25 | unifdef-y += termbits.h | ||
| 26 | unifdef-y += termios.h | ||
| 27 | unifdef-y += types.h | ||
| 28 | unifdef-y += unistd.h | ||
| 29 | unifdef-y += user.h | ||
| 6 | 30 | ||
| 7 | # These probably shouldn't be exported | 31 | # These probably shouldn't be exported |
| 8 | unifdef-y += elf.h page.h | 32 | unifdef-y += shmparam.h |
| 33 | unifdef-y += elf.h | ||
| 34 | unifdef-y += page.h | ||
diff --git a/include/asm-i386/Kbuild b/include/asm-i386/Kbuild index 2308190321da..b75a348d0c1c 100644 --- a/include/asm-i386/Kbuild +++ b/include/asm-i386/Kbuild | |||
| @@ -1,5 +1,10 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | header-y += boot.h debugreg.h ldt.h ucontext.h | 3 | header-y += boot.h |
| 4 | header-y += debugreg.h | ||
| 5 | header-y += ldt.h | ||
| 6 | header-y += ucontext.h | ||
| 4 | 7 | ||
| 5 | unifdef-y += mtrr.h setup.h vm86.h | 8 | unifdef-y += mtrr.h |
| 9 | unifdef-y += setup.h | ||
| 10 | unifdef-y += vm86.h | ||
diff --git a/include/asm-ia64/Kbuild b/include/asm-ia64/Kbuild index f1cb00f39c22..15818a18bc52 100644 --- a/include/asm-ia64/Kbuild +++ b/include/asm-ia64/Kbuild | |||
| @@ -1,7 +1,17 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | header-y += break.h fpu.h fpswa.h gcc_intrin.h ia64regs.h \ | 3 | header-y += break.h |
| 4 | intel_intrin.h intrinsics.h perfmon_default_smpl.h \ | 4 | header-y += fpu.h |
| 5 | ptrace_offsets.h rse.h setup.h ucontext.h | 5 | header-y += fpswa.h |
| 6 | header-y += gcc_intrin.h | ||
| 7 | header-y += ia64regs.h | ||
| 8 | header-y += intel_intrin.h | ||
| 9 | header-y += intrinsics.h | ||
| 10 | header-y += perfmon_default_smpl.h | ||
| 11 | header-y += ptrace_offsets.h | ||
| 12 | header-y += rse.h | ||
| 13 | header-y += setup.h | ||
| 14 | header-y += ucontext.h | ||
| 6 | 15 | ||
| 7 | unifdef-y += perfmon.h ustack.h | 16 | unifdef-y += perfmon.h |
| 17 | unifdef-y += ustack.h | ||
diff --git a/include/asm-powerpc/Kbuild b/include/asm-powerpc/Kbuild index ac61d7eb6021..9827849953a3 100644 --- a/include/asm-powerpc/Kbuild +++ b/include/asm-powerpc/Kbuild | |||
| @@ -1,10 +1,41 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | unifdef-y += a.out.h asm-compat.h bootx.h byteorder.h cputable.h elf.h \ | 3 | header-y += auxvec.h |
| 4 | nvram.h param.h posix_types.h ptrace.h seccomp.h signal.h \ | 4 | header-y += ioctls.h |
| 5 | termios.h types.h unistd.h | 5 | header-y += mman.h |
| 6 | header-y += sembuf.h | ||
| 7 | header-y += siginfo.h | ||
| 8 | header-y += stat.h | ||
| 9 | header-y += errno.h | ||
| 10 | header-y += ipcbuf.h | ||
| 11 | header-y += msgbuf.h | ||
| 12 | header-y += shmbuf.h | ||
| 13 | header-y += socket.h | ||
| 14 | header-y += termbits.h | ||
| 15 | header-y += fcntl.h | ||
| 16 | header-y += ipc.h | ||
| 17 | header-y += poll.h | ||
| 18 | header-y += shmparam.h | ||
| 19 | header-y += sockios.h | ||
| 20 | header-y += ucontext.h | ||
| 21 | header-y += ioctl.h | ||
| 22 | header-y += linkage.h | ||
| 23 | header-y += resource.h | ||
| 24 | header-y += sigcontext.h | ||
| 25 | header-y += statfs.h | ||
| 6 | 26 | ||
| 7 | header-y += auxvec.h ioctls.h mman.h sembuf.h siginfo.h stat.h errno.h \ | 27 | unifdef-y += a.out.h |
| 8 | ipcbuf.h msgbuf.h shmbuf.h socket.h termbits.h fcntl.h ipc.h \ | ||
