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 /include | |
parent | 47a5c6fa0e204a2b63309c648bb2fde36836c826 (diff) |
[HEADERS] One line per header in Kbuild files to reduce conflicts
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'include')
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 \ | 28 | unifdef-y += asm-compat.h |
9 | poll.h shmparam.h sockios.h ucontext.h ioctl.h linkage.h \ | 29 | unifdef-y += bootx.h |
10 | resource.h sigcontext.h statfs.h | 30 | unifdef-y += byteorder.h |
31 | unifdef-y += cputable.h | ||
32 | unifdef-y += elf.h | ||
33 | unifdef-y += nvram.h | ||
34 | unifdef-y += param.h | ||
35 | unifdef-y += posix_types.h | ||
36 | unifdef-y += ptrace.h | ||
37 | unifdef-y += seccomp.h | ||
38 | unifdef-y += signal.h | ||
39 | unifdef-y += termios.h | ||
40 | unifdef-y += types.h | ||
41 | unifdef-y += unistd.h | ||
diff --git a/include/asm-s390/Kbuild b/include/asm-s390/Kbuild index ed8955f49e47..14158a4a9c87 100644 --- a/include/asm-s390/Kbuild +++ b/include/asm-s390/Kbuild | |||
@@ -1,4 +1,11 @@ | |||
1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
2 | 2 | ||
3 | unifdef-y += cmb.h debug.h | 3 | header-y += dasd.h |
4 | header-y += dasd.h qeth.h tape390.h ucontext.h vtoc.h z90crypt.h | 4 | header-y += qeth.h |
5 | header-y += tape390.h | ||
6 | header-y += ucontext.h | ||
7 | header-y += vtoc.h | ||
8 | header-y += z90crypt.h | ||
9 | |||
10 | unifdef-y += cmb.h | ||
11 | unifdef-y += debug.h | ||
diff --git a/include/asm-sparc/Kbuild b/include/asm-sparc/Kbuild index e2a57fd7abfa..b22b67a64ecc 100644 --- a/include/asm-sparc/Kbuild +++ b/include/asm-sparc/Kbuild | |||
@@ -1,6 +1,22 @@ | |||
1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
2 | 2 | ||
3 | unifdef-y += fbio.h perfctr.h psr.h | 3 | header-y += apc.h |
4 | header-y += apc.h asi.h auxio.h bpp.h head.h ipc.h jsflash.h \ | 4 | header-y += asi.h |
5 | openpromio.h pbm.h pconf.h pgtsun4.h reg.h traps.h \ | 5 | header-y += auxio.h |
6 | turbosparc.h vfc_ioctls.h winmacro.h | 6 | header-y += bpp.h |
7 | header-y += head.h | ||
8 | header-y += ipc.h | ||
9 | header-y += jsflash.h | ||
10 | header-y += openpromio.h | ||
11 | header-y += pbm.h | ||
12 | header-y += pconf.h | ||
13 | header-y += pgtsun4.h | ||
14 | header-y += reg.h | ||
15 | header-y += traps.h | ||
16 | header-y += turbosparc.h | ||
17 | header-y += vfc_ioctls.h | ||
18 | header-y += winmacro.h | ||
19 | |||
20 | unifdef-y += fbio.h | ||
21 | unifdef-y += perfctr.h | ||
22 | unifdef-y += psr.h | ||
diff --git a/include/asm-sparc64/Kbuild b/include/asm-sparc64/Kbuild index 9284c3cb27ec..4b59ce46cc2d 100644 --- a/include/asm-sparc64/Kbuild +++ b/include/asm-sparc64/Kbuild | |||
@@ -4,7 +4,26 @@ ALTARCH := sparc | |||
4 | ARCHDEF := defined __sparc__ && defined __arch64__ | 4 | ARCHDEF := defined __sparc__ && defined __arch64__ |
5 | ALTARCHDEF := defined __sparc__ && !defined __arch64__ | 5 | ALTARCHDEF := defined __sparc__ && !defined __arch64__ |
6 | 6 | ||
7 | unifdef-y += fbio.h perfctr.h | 7 | header-y += apb.h |
8 | header-y += apb.h asi.h bbc.h bpp.h display7seg.h envctrl.h floppy.h \ | 8 | header-y += asi.h |
9 | ipc.h kdebug.h mostek.h openprom.h openpromio.h parport.h \ | 9 | header-y += bbc.h |
10 | pconf.h psrcompat.h pstate.h reg.h uctx.h utrap.h watchdog.h | 10 | header-y += bpp.h |
11 | header-y += display7seg.h | ||
12 | header-y += envctrl.h | ||
13 | header-y += floppy.h | ||
14 | header-y += ipc.h | ||
15 | header-y += kdebug.h | ||
16 | header-y += mostek.h | ||
17 | header-y += openprom.h | ||
18 | header-y += openpromio.h | ||
19 | header-y += parport.h | ||
20 | header-y += pconf.h | ||
21 | header-y += psrcompat.h | ||
22 | header-y += pstate.h | ||
23 | header-y += reg.h | ||
24 | header-y += uctx.h | ||
25 | header-y += utrap.h | ||
26 | header-y += watchdog.h | ||
27 | |||
28 | unifdef-y += fbio.h | ||
29 | unifdef-y += perfctr.h | ||
diff --git a/include/asm-x86_64/Kbuild b/include/asm-x86_64/Kbuild index dc4d101e8a16..40f2f13fe174 100644 --- a/include/asm-x86_64/Kbuild +++ b/include/asm-x86_64/Kbuild | |||
@@ -4,8 +4,18 @@ ALTARCH := i386 | |||
4 | ARCHDEF := defined __x86_64__ | 4 | ARCHDEF := defined __x86_64__ |
5 | ALTARCHDEF := defined __i386__ | 5 | ALTARCHDEF := defined __i386__ |
6 | 6 | ||
7 | header-y += boot.h bootsetup.h cpufeature.h debugreg.h ldt.h \ | 7 | header-y += boot.h |
8 | msr.h prctl.h setup.h sigcontext32.h ucontext.h \ | 8 | header-y += bootsetup.h |
9 | vsyscall32.h | 9 | header-y += cpufeature.h |
10 | header-y += debugreg.h | ||
11 | header-y += ldt.h | ||
12 | header-y += msr.h | ||
13 | header-y += prctl.h | ||
14 | header-y += setup.h | ||
15 | header-y += sigcontext32.h | ||
16 | header-y += ucontext.h | ||
17 | header-y += vsyscall32.h | ||
10 | 18 | ||
11 | unifdef-y += mce.h mtrr.h vsyscall.h | 19 | unifdef-y += mce.h |
20 | unifdef-y += mtrr.h | ||
21 | unifdef-y += vsyscall.h | ||
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index 2b8a7d68fae3..7d076d97b2f7 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
@@ -1,63 +1,343 @@ | |||
1 | header-y := byteorder/ dvb/ hdlc/ isdn/ nfsd/ raid/ sunrpc/ tc_act/ \ | 1 | header-y += byteorder/ |
2 | netfilter/ netfilter_arp/ netfilter_bridge/ netfilter_ipv4/ \ | 2 | header-y += dvb/ |
3 | netfilter_ipv6/ | 3 | header-y += hdlc/ |
4 | header-y += isdn/ | ||
5 | header-y += nfsd/ | ||
6 | header-y += raid/ | ||
7 | header-y += sunrpc/ | ||
8 | header-y += tc_act/ | ||
9 | header-y += netfilter/ | ||
10 | header-y += netfilter_arp/ | ||
11 | header-y += netfilter_bridge/ | ||
12 | header-y += netfilter_ipv4/ | ||
13 | header-y += netfilter_ipv6/ | ||
4 | 14 | ||
5 | header-y += affs_fs.h affs_hardblocks.h aio_abi.h a.out.h arcfb.h \ | 15 | header-y += affs_fs.h |
6 | atmapi.h atmbr2684.h atmclip.h atm_eni.h atm_he.h \ | 16 | header-y += affs_hardblocks.h |
7 | atm_idt77105.h atmioc.h atmlec.h atmmpc.h atm_nicstar.h \ | 17 | header-y += aio_abi.h |
8 | atmppp.h atmsap.h atmsvc.h atm_zatm.h auto_fs4.h auxvec.h \ | 18 | header-y += a.out.h |
9 | awe_voice.h ax25.h b1lli.h baycom.h bfs_fs.h blkpg.h \ | 19 | header-y += arcfb.h |
10 | bpqether.h cdk.h chio.h coda_psdev.h coff.h comstats.h \ | 20 | header-y += atmapi.h |
11 | consolemap.h cycx_cfm.h dm-ioctl.h dn.h dqblk_v1.h \ | 21 | header-y += atmbr2684.h |
12 | dqblk_v2.h dqblk_xfs.h efs_fs_sb.h elf-fdpic.h elf.h elf-em.h \ | 22 | header-y += atmclip.h |
13 | fadvise.h fd.h fdreg.h ftape-header-segment.h ftape-vendors.h \ | 23 | header-y += atm_eni.h |
14 | fuse.h futex.h genetlink.h gen_stats.h gigaset_dev.h hdsmart.h \ | 24 | header-y += atm_he.h |
15 | hpfs_fs.h hysdn_if.h i2c-dev.h i8k.h icmp.h \ | 25 | header-y += atm_idt77105.h |
16 | if_arcnet.h if_arp.h if_bonding.h if_cablemodem.h if_fc.h \ | 26 | header-y += atmioc.h |
17 | if_fddi.h if.h if_hippi.h if_infiniband.h if_packet.h \ | 27 | header-y += atmlec.h |
18 | if_plip.h if_ppp.h if_slip.h if_strip.h if_tunnel.h in6.h \ | 28 | header-y += atmmpc.h |
19 | in_route.h ioctl.h ip.h ipmi_msgdefs.h ip_mp_alg.h ipsec.h \ | 29 | header-y += atm_nicstar.h |
20 | ipx.h irda.h isdn_divertif.h iso_fs.h ite_gpio.h ixjuser.h \ | 30 | header-y += atmppp.h |
21 | jffs2.h keyctl.h limits.h major.h matroxfb.h meye.h minix_fs.h \ | 31 | header-y += atmsap.h |
22 | mmtimer.h mqueue.h mtio.h ncp_no.h netfilter_arp.h netrom.h \ | 32 | header-y += atmsvc.h |
23 | nfs2.h nfs4_mount.h nfs_mount.h openprom_fs.h param.h \ | 33 | header-y += atm_zatm.h |
24 | pci_ids.h pci_regs.h personality.h pfkeyv2.h pg.h pkt_cls.h \ | 34 | header-y += auto_fs4.h |
25 | pkt_sched.h posix_types.h ppdev.h prctl.h ps2esdi.h qic117.h \ | 35 | header-y += auxvec.h |
26 | qnxtypes.h quotaio_v1.h quotaio_v2.h radeonfb.h raw.h \ | 36 | header-y += awe_voice.h |
27 | resource.h rose.h sctp.h smbno.h snmp.h sockios.h som.h \ | 37 | header-y += ax25.h |
28 | sound.h stddef.h synclink.h telephony.h termios.h ticable.h \ | 38 | header-y += b1lli.h |
29 | times.h tiocl.h tipc.h toshiba.h ultrasound.h un.h utime.h \ | 39 | header-y += baycom.h |
30 | utsname.h video_decoder.h video_encoder.h videotext.h vt.h \ | 40 | header-y += bfs_fs.h |
31 | wavefront.h wireless.h xattr.h x25.h zorro_ids.h | 41 | header-y += blkpg.h |
42 | header-y += bpqether.h | ||
43 | header-y += cdk.h | ||
44 | header-y += chio.h | ||
45 | header-y += coda_psdev.h | ||
46 | header-y += coff.h | ||
47 | header-y += comstats.h | ||
48 | header-y += consolemap.h | ||
49 | header-y += cycx_cfm.h | ||
50 | header-y += dm-ioctl.h | ||
51 | header-y += dn.h | ||
52 | header-y += dqblk_v1.h | ||
53 | header-y += dqblk_v2.h | ||
54 | header-y += dqblk_xfs.h | ||
55 | header-y += efs_fs_sb.h | ||
56 | header-y += elf-fdpic.h | ||
57 | header-y += elf.h | ||
58 | header-y += elf-em.h | ||
59 | header-y += fadvise.h | ||
60 | header-y += fd.h | ||
61 | header-y += fdreg.h | ||
62 | header-y += ftape-header-segment.h | ||
63 | header-y += ftape-vendors.h | ||
64 | header-y += fuse.h | ||
65 | header-y += futex.h | ||
66 | header-y += genetlink.h | ||
67 | header-y += gen_stats.h | ||
68 | header-y += gigaset_dev.h | ||
69 | header-y += hdsmart.h | ||
70 | header-y += hpfs_fs.h | ||
71 | header-y += hysdn_if.h | ||
72 | header-y += i2c-dev.h | ||
73 | header-y += i8k.h | ||
74 | header-y += icmp.h | ||
75 | header-y += if_arcnet.h | ||
76 | header-y += if_arp.h | ||
77 | header-y += if_bonding.h | ||
78 | header-y += if_cablemodem.h | ||
79 | header-y += if_fc.h | ||
80 | header-y += if_fddi.h | ||
81 | header-y += if.h | ||
82 | header-y += if_hippi.h | ||
83 | header-y += if_infiniband.h | ||
84 | header-y += if_packet.h | ||
85 | header-y += if_plip.h | ||
86 | header-y += if_ppp.h | ||
87 | header-y += if_slip.h | ||
88 | header-y += if_strip.h | ||
89 | header-y += if_tunnel.h | ||
90 | header-y += in6.h | ||
91 | header-y += in_route.h | ||
92 | header-y += ioctl.h | ||
93 | header-y += ip.h | ||
94 | header-y += ipmi_msgdefs.h | ||
95 | header-y += ip_mp_alg.h | ||
96 | header-y += ipsec.h | ||
97 | header-y += ipx.h | ||
98 | header-y += irda.h | ||
99 | header-y += isdn_divertif.h | ||
100 | header-y += iso_fs.h | ||
101 | header-y += ite_gpio.h | ||
102 | header-y += ixjuser.h | ||
103 | header-y += jffs2.h | ||
104 | header-y += keyctl.h | ||
105 | header-y += limits.h | ||
106 | header-y += major.h | ||
107 | header-y += matroxfb.h | ||
108 | header-y += meye.h | ||
109 | header-y += minix_fs.h | ||
110 | header-y += mmtimer.h | ||
111 | header-y += mqueue.h | ||
112 | header-y += mtio.h | ||
113 | header-y += ncp_no.h | ||
114 | header-y += netfilter_arp.h | ||
115 | header-y += netrom.h | ||
116 | header-y += nfs2.h | ||
117 | header-y += nfs4_mount.h | ||
118 | header-y += nfs_mount.h | ||
119 | header-y += openprom_fs.h | ||
120 | header-y += param.h | ||
121 | header-y += pci_ids.h | ||
122 | header-y += pci_regs.h | ||
123 | header-y += personality.h | ||
124 | header-y += pfkeyv2.h | ||
125 | header-y += pg.h | ||
126 | header-y += pkt_cls.h | ||
127 | header-y += pkt_sched.h | ||
128 | header-y += posix_types.h | ||
129 | header-y += ppdev.h | ||
130 | header-y += prctl.h | ||
131 | header-y += ps2esdi.h | ||
132 | header-y += qic117.h | ||
133 | header-y += qnxtypes.h | ||
134 | header-y += quotaio_v1.h | ||
135 | header-y += quotaio_v2.h | ||
136 | header-y += radeonfb.h | ||
137 | header-y += raw.h | ||
138 | header-y += resource.h | ||
139 | header-y += rose.h | ||
140 | header-y += sctp.h | ||
141 | header-y += smbno.h | ||
142 | header-y += snmp.h | ||
143 | header-y += sockios.h | ||
144 | header-y += som.h | ||
145 | header-y += sound.h | ||
146 | header-y += stddef.h | ||
147 | header-y += synclink.h | ||
148 | header-y += telephony.h | ||
149 | header-y += termios.h | ||
150 | header-y += ticable.h | ||
151 | header-y += times.h | ||
152 | header-y += tiocl.h | ||
153 | header-y += tipc.h | ||
154 | header-y += toshiba.h | ||
155 | header-y += ultrasound.h | ||
156 | header-y += un.h | ||
157 | header-y += utime.h | ||
158 | header-y += utsname.h | ||
159 | header-y += video_decoder.h | ||
160 | header-y += video_encoder.h | ||
161 | header-y += videotext.h | ||
162 | header-y += vt.h | ||
163 | header-y += wavefront.h | ||
164 | header-y += wireless.h | ||
165 | header-y += xattr.h | ||
166 | header-y += x25.h | ||
167 | header-y += zorro_ids.h | ||
32 | 168 | ||
33 | unifdef-y += acct.h adb.h adfs_fs.h agpgart.h apm_bios.h atalk.h \ | 169 | unifdef-y += acct.h |
34 | atmarp.h atmdev.h atm.h atm_tcp.h audit.h auto_fs.h binfmts.h \ | 170 | unifdef-y += adb.h |
35 | capability.h capi.h cciss_ioctl.h cdrom.h cm4000_cs.h \ | 171 | unifdef-y += adfs_fs.h |
36 | cn_proc.h coda.h connector.h cramfs_fs.h cuda.h cyclades.h \ | 172 | unifdef-y += agpgart.h |
37 | dccp.h dirent.h divert.h elfcore.h errno.h errqueue.h \ | 173 | unifdef-y += apm_bios.h |
38 | ethtool.h eventpoll.h ext2_fs.h ext3_fs.h fb.h fcntl.h \ | 174 | unifdef-y += atalk.h |
39 | filter.h flat.h fs.h ftape.h gameport.h generic_serial.h \ | 175 | unifdef-y += atmarp.h |
40 | genhd.h hayesesp.h hdlcdrv.h hdlc.h hdreg.h hiddev.h hpet.h \ | 176 | unifdef-y += atmdev.h |
41 | i2c.h i2o-dev.h icmpv6.h if_bridge.h if_ec.h \ | 177 | unifdef-y += atm.h |
42 | if_eql.h if_ether.h if_frad.h if_ltalk.h if_pppox.h \ | 178 | unifdef-y += atm_tcp.h |
43 | if_shaper.h if_tr.h if_tun.h if_vlan.h if_wanpipe.h igmp.h \ | 179 | unifdef-y += audit.h |
44 | inet_diag.h in.h inotify.h input.h ipc.h ipmi.h ipv6.h \ | 180 | unifdef-y += auto_fs.h |
45 | ipv6_route.h isdn.h isdnif.h isdn_ppp.h isicom.h jbd.h \ | 181 | unifdef-y += binfmts.h |
46 | joystick.h kdev_t.h kd.h kernelcapi.h kernel.h keyboard.h \ | 182 | unifdef-y += capability.h |
47 | llc.h loop.h lp.h mempolicy.h mii.h mman.h mroute.h msdos_fs.h \ | 183 | unifdef-y += capi.h |
48 | msg.h nbd.h ncp_fs.h ncp.h ncp_mount.h netdevice.h \ | 184 | unifdef-y += cciss_ioctl.h |
49 | netfilter_bridge.h netfilter_decnet.h netfilter.h \ | 185 | unifdef-y += cdrom.h |
50 | netfilter_ipv4.h netfilter_ipv6.h netfilter_logging.h net.h \ | 186 | unifdef-y += cm4000_cs.h |
51 | netlink.h nfs3.h nfs4.h nfsacl.h nfs_fs.h nfs.h nfs_idmap.h \ | 187 | unifdef-y += cn_proc.h |
52 | n_r3964.h nubus.h nvram.h parport.h patchkey.h pci.h pktcdvd.h \ | 188 | unifdef-y += coda.h |
53 | pmu.h poll.h ppp_defs.h ppp-comp.h ptrace.h qnx4_fs.h quota.h \ | 189 | unifdef-y += connector.h |
54 | random.h reboot.h reiserfs_fs.h reiserfs_xattr.h romfs_fs.h \ | 190 | unifdef-y += cramfs_fs.h |
55 | route.h rtc.h rtnetlink.h scc.h sched.h sdla.h \ | 191 | unifdef-y += cuda.h |
56 | selinux_netlink.h sem.h serial_core.h serial.h serio.h shm.h \ | 192 | unifdef-y += cyclades.h |
57 | signal.h smb_fs.h smb.h smb_mount.h socket.h sonet.h sonypi.h \ | 193 | unifdef-y += dccp.h |
58 | soundcard.h stat.h sysctl.h tcp.h time.h timex.h tty.h types.h \ | 194 | unifdef-y += dirent.h |
59 | udf_fs_i.h udp.h uinput.h uio.h unistd.h usb_ch9.h \ | 195 | unifdef-y += divert.h |
60 | usbdevice_fs.h user.h videodev2.h videodev.h wait.h \ | 196 | unifdef-y += elfcore.h |
61 | wanrouter.h watchdog.h xfrm.h zftape.h | 197 | unifdef-y += errno.h |
198 | unifdef-y += errqueue.h | ||
199 | unifdef-y += ethtool.h | ||
200 | unifdef-y += eventpoll.h | ||
201 | unifdef-y += ext2_fs.h | ||
202 | unifdef-y += ext3_fs.h | ||
203 | unifdef-y += fb.h | ||
204 | unifdef-y += fcntl.h | ||
205 | unifdef-y += filter.h | ||
206 | unifdef-y += flat.h | ||
207 | unifdef-y += fs.h | ||
208 | unifdef-y += ftape.h | ||
209 | unifdef-y += gameport.h | ||
210 | unifdef-y += generic_serial.h | ||
211 | unifdef-y += genhd.h | ||
212 | unifdef-y += hayesesp.h | ||
213 | unifdef-y += hdlcdrv.h | ||
214 | unifdef-y += hdlc.h | ||
215 | unifdef-y += hdreg.h | ||
216 | unifdef-y += hiddev.h | ||
217 | unifdef-y += hpet.h | ||
218 | unifdef-y += i2c.h | ||
219 | unifdef-y += i2o-dev.h | ||
220 | unifdef-y += icmpv6.h | ||
221 | unifdef-y += if_bridge.h | ||
222 | unifdef-y += if_ec.h | ||
223 | unifdef-y += if_eql.h | ||
224 | unifdef-y += if_ether.h | ||
225 | unifdef-y += if_frad.h | ||
226 | unifdef-y += if_ltalk.h | ||
227 | unifdef-y += if_pppox.h | ||
228 | unifdef-y += if_shaper.h | ||
229 | unifdef-y += if_tr.h | ||
230 | unifdef-y += if_tun.h | ||
231 | unifdef-y += if_vlan.h | ||
232 | unifdef-y += if_wanpipe.h | ||
233 | unifdef-y += igmp.h | ||
234 | unifdef-y += inet_diag.h | ||
235 | unifdef-y += in.h | ||
236 | unifdef-y += inotify.h | ||
237 | unifdef-y += input.h | ||
238 | unifdef-y += ipc.h | ||
239 | unifdef-y += ipmi.h | ||
240 | unifdef-y += ipv6.h | ||
241 | unifdef-y += ipv6_route.h | ||
242 | unifdef-y += isdn.h | ||
243 | unifdef-y += isdnif.h | ||
244 | unifdef-y += isdn_ppp.h | ||
245 | unifdef-y += isicom.h | ||
246 | unifdef-y += jbd.h | ||
247 | unifdef-y += joystick.h | ||
248 | unifdef-y += kdev_t.h | ||
249 | unifdef-y += kd.h | ||
250 | unifdef-y += kernelcapi.h | ||
251 | unifdef-y += kernel.h | ||
252 | unifdef-y += keyboard.h | ||
253 | unifdef-y += llc.h | ||
254 | unifdef-y += loop.h | ||
255 | unifdef-y += lp.h | ||
256 | unifdef-y += mempolicy.h | ||
257 | unifdef-y += mii.h | ||
258 | unifdef-y += mman.h | ||
259 | unifdef-y += mroute.h | ||
260 | unifdef-y += msdos_fs.h | ||
261 | unifdef-y += msg.h | ||
262 | unifdef-y += nbd.h | ||
263 | unifdef-y += ncp_fs.h | ||
264 | unifdef-y += ncp.h | ||
265 | unifdef-y += ncp_mount.h | ||
266 | unifdef-y += netdevice.h | ||
267 | unifdef-y += netfilter_bridge.h | ||
268 | unifdef-y += netfilter_decnet.h | ||
269 | unifdef-y += netfilter.h | ||
270 | unifdef-y += netfilter_ipv4.h | ||
271 | unifdef-y += netfilter_ipv6.h | ||
272 | unifdef-y += netfilter_logging.h | ||
273 | unifdef-y += net.h | ||
274 | unifdef-y += netlink.h | ||
275 | unifdef-y += nfs3.h | ||
276 | unifdef-y += nfs4.h | ||
277 | unifdef-y += nfsacl.h | ||
278 | unifdef-y += nfs_fs.h | ||
279 | unifdef-y += nfs.h | ||
280 | unifdef-y += nfs_idmap.h | ||
281 | unifdef-y += n_r3964.h | ||
282 | unifdef-y += nubus.h | ||
283 | unifdef-y += nvram.h | ||
284 | unifdef-y += parport.h | ||
285 | unifdef-y += patchkey.h | ||
286 | unifdef-y += pci.h | ||
287 | unifdef-y += pktcdvd.h | ||
288 | unifdef-y += pmu.h | ||
289 | unifdef-y += poll.h | ||
290 | unifdef-y += ppp_defs.h | ||
291 | unifdef-y += ppp-comp.h | ||
292 | unifdef-y += ptrace.h | ||
293 | unifdef-y += qnx4_fs.h | ||
294 | unifdef-y += quota.h | ||
295 | unifdef-y += random.h | ||
296 | unifdef-y += reboot.h | ||
297 | unifdef-y += reiserfs_fs.h | ||
298 | unifdef-y += reiserfs_xattr.h | ||
299 | unifdef-y += romfs_fs.h | ||
300 | unifdef-y += route.h | ||
301 | unifdef-y += rtc.h | ||
302 | unifdef-y += rtnetlink.h | ||
303 | unifdef-y += scc.h | ||
304 | unifdef-y += sched.h | ||
305 | unifdef-y += sdla.h | ||
306 | unifdef-y += selinux_netlink.h | ||
307 | unifdef-y += sem.h | ||
308 | unifdef-y += serial_core.h | ||
309 | unifdef-y += serial.h | ||
310 | unifdef-y += serio.h | ||
311 | unifdef-y += shm.h | ||
312 | unifdef-y += signal.h | ||
313 | unifdef-y += smb_fs.h | ||
314 | unifdef-y += smb.h | ||
315 | unifdef-y += smb_mount.h | ||
316 | unifdef-y += socket.h | ||
317 | unifdef-y += sonet.h | ||
318 | unifdef-y += sonypi.h | ||
319 | unifdef-y += soundcard.h | ||
320 | unifdef-y += stat.h | ||
321 | unifdef-y += sysctl.h | ||
322 | unifdef-y += tcp.h | ||
323 | unifdef-y += time.h | ||
324 | unifdef-y += timex.h | ||
325 | unifdef-y += tty.h | ||
326 | unifdef-y += types.h | ||
327 | unifdef-y += udf_fs_i.h | ||
328 | unifdef-y += udp.h | ||
329 | unifdef-y += uinput.h | ||
330 | unifdef-y += uio.h | ||
331 | unifdef-y += unistd.h | ||
332 | unifdef-y += usb_ch9.h | ||
333 | unifdef-y += usbdevice_fs.h | ||
334 | unifdef-y += user.h | ||
335 | unifdef-y += videodev2.h | ||
336 | unifdef-y += videodev.h | ||
337 | unifdef-y += wait.h | ||
338 | unifdef-y += wanrouter.h | ||
339 | unifdef-y += watchdog.h | ||
340 | unifdef-y += xfrm.h | ||
341 | unifdef-y += zftape.h | ||
62 | 342 | ||
63 | objhdr-y := version.h | 343 | objhdr-y += version.h |
diff --git a/include/linux/byteorder/Kbuild b/include/linux/byteorder/Kbuild index 84a57d4fb212..56499ab9e32e 100644 --- a/include/linux/byteorder/Kbuild +++ b/include/linux/byteorder/Kbuild | |||
@@ -1,2 +1,7 @@ | |||
1 | unifdef-y += generic.h swabb.h swab.h | 1 | header-y += big_endian.h |
2 | header-y += big_endian.h little_endian.h pdp_endian.h | 2 | header-y += little_endian.h |
3 | header-y += pdp_endian.h | ||
4 | |||
5 | unifdef-y += generic.h | ||
6 | unifdef-y += swabb.h | ||
7 | unifdef-y += swab.h | ||
diff --git a/include/linux/dvb/Kbuild b/include/linux/dvb/Kbuild index 63973af72fd5..d97b3a51e227 100644 --- a/include/linux/dvb/Kbuild +++ b/include/linux/dvb/Kbuild | |||
@@ -1,2 +1,9 @@ | |||
1 | header-y += ca.h frontend.h net.h osd.h version.h | 1 | header-y += ca.h |
2 | unifdef-y := audio.h dmx.h video.h | 2 | header-y += frontend.h |
3 | header-y += net.h | ||
4 | header-y += osd.h | ||
5 | header-y += version.h | ||
6 | |||
7 | unifdef-y += audio.h | ||
8 | unifdef-y += dmx.h | ||
9 | unifdef-y += video.h | ||
diff --git a/include/linux/netfilter/Kbuild b/include/linux/netfilter/Kbuild index 1d3a14e2da6e..9a285cecf249 100644 --- a/include/linux/netfilter/Kbuild +++ b/include/linux/netfilter/Kbuild | |||
@@ -1,11 +1,38 @@ | |||
1 | header-y := nf_conntrack_sctp.h nf_conntrack_tuple_common.h \ | 1 | header-y += nf_conntrack_sctp.h |
2 | nfnetlink_conntrack.h nfnetlink_log.h nfnetlink_queue.h \ | 2 | header-y += nf_conntrack_tuple_common.h |
3 | xt_CLASSIFY.h xt_comment.h xt_connbytes.h xt_connmark.h \ | 3 | header-y += nfnetlink_conntrack.h |
4 | xt_CONNMARK.h xt_conntrack.h xt_dccp.h xt_esp.h \ | 4 | header-y += nfnetlink_log.h |
5 | xt_helper.h xt_length.h xt_limit.h xt_mac.h xt_mark.h \ | 5 | header-y += nfnetlink_queue.h |
6 | xt_MARK.h xt_multiport.h xt_NFQUEUE.h xt_pkttype.h \ | 6 | header-y += xt_CLASSIFY.h |
7 | xt_policy.h xt_realm.h xt_sctp.h xt_state.h xt_string.h \ | 7 | header-y += xt_comment.h |
8 | xt_tcpmss.h xt_tcpudp.h xt_SECMARK.h xt_CONNSECMARK.h | 8 | header-y += xt_connbytes.h |
9 | header-y += xt_connmark.h | ||
10 | header-y += xt_CONNMARK.h | ||
11 | header-y += xt_conntrack.h | ||
12 | header-y += xt_dccp.h | ||
13 | header-y += xt_esp.h | ||
14 | header-y += xt_helper.h | ||
15 | header-y += xt_length.h | ||
16 | header-y += xt_limit.h | ||
17 | header-y += xt_mac.h | ||
18 | header-y += xt_mark.h | ||
19 | header-y += xt_MARK.h | ||
20 | header-y += xt_multiport.h | ||
21 | header-y += xt_NFQUEUE.h | ||
22 | header-y += xt_pkttype.h | ||
23 | header-y += xt_policy.h | ||
24 | header-y += xt_realm.h | ||
25 | header-y += xt_sctp.h | ||
26 | header-y += xt_state.h | ||
27 | header-y += xt_string.h | ||
28 | header-y += xt_tcpmss.h | ||
29 | header-y += xt_tcpudp.h | ||
30 | header-y += xt_SECMARK.h | ||
31 | header-y += xt_CONNSECMARK.h | ||
9 | 32 | ||
10 | unifdef-y := nf_conntrack_common.h nf_conntrack_ftp.h \ | 33 | unifdef-y += nf_conntrack_common.h |
11 | nf_conntrack_tcp.h nfnetlink.h x_tables.h xt_physdev.h | 34 | unifdef-y += nf_conntrack_ftp.h |
35 | unifdef-y += nf_conntrack_tcp.h | ||
36 | unifdef-y += nfnetlink.h | ||
37 | unifdef-y += x_tables.h | ||
38 | unifdef-y += xt_physdev.h | ||
diff --git a/include/linux/netfilter_arp/Kbuild b/include/linux/netfilter_arp/Kbuild index 198ec5e7b17d..4f13dfcb92ea 100644 --- a/include/linux/netfilter_arp/Kbuild +++ b/include/linux/netfilter_arp/Kbuild | |||
@@ -1,2 +1,3 @@ | |||
1 | header-y := arpt_mangle.h | 1 | header-y += arpt_mangle.h |
2 | unifdef-y := arp_tables.h | 2 | |
3 | unifdef-y += arp_tables.h | ||
diff --git a/include/linux/netfilter_bridge/Kbuild b/include/linux/netfilter_bridge/Kbuild index 5b1aba6abbad..76ff4c47d8c4 100644 --- a/include/linux/netfilter_bridge/Kbuild +++ b/include/linux/netfilter_bridge/Kbuild | |||
@@ -1,4 +1,17 @@ | |||
1 | header-y += ebt_among.h ebt_arp.h ebt_arpreply.h ebt_ip.h ebt_limit.h \ | 1 | header-y += ebt_among.h |
2 | ebt_log.h ebt_mark_m.h ebt_mark_t.h ebt_nat.h ebt_pkttype.h \ | 2 | header-y += ebt_arp.h |
3 | ebt_redirect.h ebt_stp.h ebt_ulog.h ebt_vlan.h | 3 | header-y += ebt_arpreply.h |
4 | unifdef-y := ebtables.h ebt_802_3.h | 4 | header-y += ebt_ip.h |
5 | header-y += ebt_limit.h | ||
6 | header-y += ebt_log.h | ||
7 | header-y += ebt_mark_m.h | ||
8 | header-y += ebt_mark_t.h | ||
9 | header-y += ebt_nat.h | ||
10 | header-y += ebt_pkttype.h | ||
11 | header-y += ebt_redirect.h | ||
12 | header-y += ebt_stp.h | ||
13 | header-y += ebt_ulog.h | ||
14 | header-y += ebt_vlan.h | ||
15 | |||
16 | unifdef-y += ebtables.h | ||
17 | unifdef-y += ebt_802_3.h | ||
diff --git a/include/linux/netfilter_ipv4/Kbuild b/include/linux/netfilter_ipv4/Kbuild index 04e4d2721689..591c1a809c00 100644 --- a/include/linux/netfilter_ipv4/Kbuild +++ b/include/linux/netfilter_ipv4/Kbuild | |||
@@ -1,21 +1,63 @@ | |||
1 | header-y += ip_conntrack_helper.h | ||
2 | header-y += ip_conntrack_helper_h323_asn1.h | ||
3 | header-y += ip_conntrack_helper_h323_types.h | ||
4 | header-y += ip_conntrack_protocol.h | ||
5 | header-y += ip_conntrack_sctp.h | ||
6 | header-y += ip_conntrack_tcp.h | ||
7 | header-y += ip_conntrack_tftp.h | ||
8 | header-y += ip_nat_pptp.h | ||
9 | header-y += ipt_addrtype.h | ||
10 | header-y += ipt_ah.h | ||
11 | header-y += ipt_CLASSIFY.h | ||
12 | header-y += ipt_CLUSTERIP.h | ||
13 | header-y += ipt_comment.h | ||
14 | header-y += ipt_connbytes.h | ||
15 | header-y += ipt_connmark.h | ||
16 | header-y += ipt_CONNMARK.h | ||
17 | header-y += ipt_conntrack.h | ||
18 | header-y += ipt_dccp.h | ||
19 | header-y += ipt_dscp.h | ||
20 | header-y += ipt_DSCP.h | ||
21 | header-y += ipt_ecn.h | ||
22 | header-y += ipt_ECN.h | ||
23 | header-y += ipt_esp.h | ||
24 | header-y += ipt_hashlimit.h | ||
25 | header-y += ipt_helper.h | ||
26 | header-y += ipt_iprange.h | ||
27 | header-y += ipt_length.h | ||
28 | header-y += ipt_limit.h | ||
29 | header-y += ipt_LOG.h | ||
30 | header-y += ipt_mac.h | ||
31 | header-y += ipt_mark.h | ||
32 | header-y += ipt_MARK.h | ||
33 | header-y += ipt_multiport.h | ||
34 | header-y += ipt_NFQUEUE.h | ||
35 | header-y += ipt_owner.h | ||
36 | header-y += ipt_physdev.h | ||
37 | header-y += ipt_pkttype.h | ||
38 | header-y += ipt_policy.h | ||
39 | header-y += ipt_realm.h | ||
40 | header-y += ipt_recent.h | ||
41 | header-y += ipt_REJECT.h | ||
42 | header-y += ipt_SAME.h | ||
43 | header-y += ipt_sctp.h | ||
44 | header-y += ipt_state.h | ||
45 | header-y += ipt_string.h | ||
46 | header-y += ipt_tcpmss.h | ||
47 | header-y += ipt_TCPMSS.h | ||
48 | header-y += ipt_tos.h | ||
49 | header-y += ipt_TOS.h | ||
50 | header-y += ipt_ttl.h | ||
51 | header-y += ipt_TTL.h | ||
52 | header-y += ipt_ULOG.h | ||
1 | 53 | ||
2 | header-y := ip_conntrack_helper.h ip_conntrack_helper_h323_asn1.h \ | 54 | unifdef-y += ip_conntrack.h |
3 | ip_conntrack_helper_h323_types.h ip_conntrack_protocol.h \ | 55 | unifdef-y += ip_conntrack_h323.h |
4 | ip_conntrack_sctp.h ip_conntrack_tcp.h ip_conntrack_tftp.h \ | 56 | unifdef-y += ip_conntrack_irc.h |
5 | ip_nat_pptp.h ipt_addrtype.h ipt_ah.h \ | 57 | unifdef-y += ip_conntrack_pptp.h |
6 | ipt_CLASSIFY.h ipt_CLUSTERIP.h ipt_comment.h \ | 58 | unifdef-y += ip_conntrack_proto_gre.h |
7 | ipt_connbytes.h ipt_connmark.h ipt_CONNMARK.h \ | 59 | unifdef-y += ip_conntrack_tuple.h |
8 | ipt_conntrack.h ipt_dccp.h ipt_dscp.h ipt_DSCP.h ipt_ecn.h \ | 60 | unifdef-y += ip_nat.h |
9 | ipt_ECN.h ipt_esp.h ipt_hashlimit.h ipt_helper.h \ | 61 | unifdef-y += ip_nat_rule.h |
10 | ipt_iprange.h ipt_length.h ipt_limit.h ipt_LOG.h ipt_mac.h \ | 62 | unifdef-y += ip_queue.h |
11 | ipt_mark.h ipt_MARK.h ipt_multiport.h ipt_NFQUEUE.h \ | 63 | unifdef-y += ip_tables.h |
12 | ipt_owner.h ipt_physdev.h ipt_pkttype.h ipt_policy.h \ | ||
13 | ipt_realm.h ipt_recent.h ipt_REJECT.h ipt_SAME.h \ | ||
14 | ipt_sctp.h ipt_state.h ipt_string.h ipt_tcpmss.h \ | ||
15 | ipt_TCPMSS.h ipt_tos.h ipt_TOS.h ipt_ttl.h ipt_TTL.h \ | ||
16 | ipt_ULOG.h | ||
17 | |||
18 | unifdef-y := ip_conntrack.h ip_conntrack_h323.h ip_conntrack_irc.h \ | ||
19 | ip_conntrack_pptp.h ip_conntrack_proto_gre.h \ | ||
20 | ip_conntrack_tuple.h ip_nat.h ip_nat_rule.h ip_queue.h \ | ||
21 | ip_tables.h | ||
diff --git a/include/linux/netfilter_ipv6/Kbuild b/include/linux/netfilter_ipv6/Kbuild index 913ddbf55b4b..9dd978d149ff 100644 --- a/include/linux/netfilter_ipv6/Kbuild +++ b/include/linux/netfilter_ipv6/Kbuild | |||
@@ -1,6 +1,21 @@ | |||
1 | header-y += ip6t_HL.h ip6t_LOG.h ip6t_MARK.h ip6t_REJECT.h ip6t_ah.h \ | 1 | header-y += ip6t_HL.h |
2 | ip6t_esp.h ip6t_frag.h ip6t_hl.h ip6t_ipv6header.h \ | 2 | header-y += ip6t_LOG.h |
3 | ip6t_length.h ip6t_limit.h ip6t_mac.h ip6t_mark.h \ | 3 | header-y += ip6t_MARK.h |
4 | ip6t_multiport.h ip6t_opts.h ip6t_owner.h ip6t_policy.h \ | 4 | header-y += ip6t_REJECT.h |
5 | ip6t_physdev.h ip6t_rt.h | 5 | header-y += ip6t_ah.h |
6 | unifdef-y := ip6_tables.h | 6 | header-y += ip6t_esp.h |
7 | header-y += ip6t_frag.h | ||
8 | header-y += ip6t_hl.h | ||
9 | header-y += ip6t_ipv6header.h | ||
10 | header-y += ip6t_length.h | ||
11 | header-y += ip6t_limit.h | ||
12 | header-y += ip6t_mac.h | ||
13 | header-y += ip6t_mark.h | ||
14 | header-y += ip6t_multiport.h | ||
15 | header-y += ip6t_opts.h | ||
16 | header-y += ip6t_owner.h | ||
17 | header-y += ip6t_policy.h | ||
18 | header-y += ip6t_physdev.h | ||
19 | header-y += ip6t_rt.h | ||
20 | |||
21 | unifdef-y += ip6_tables.h | ||
diff --git a/include/linux/nfsd/Kbuild b/include/linux/nfsd/Kbuild index c8c545665885..d9c5455808e5 100644 --- a/include/linux/nfsd/Kbuild +++ b/include/linux/nfsd/Kbuild | |||
@@ -1,2 +1,7 @@ | |||
1 | unifdef-y := const.h export.h stats.h syscall.h nfsfh.h debug.h auth.h | 1 | unifdef-y += const.h |
2 | 2 | unifdef-y += export.h | |
3 | unifdef-y += stats.h | ||
4 | unifdef-y += syscall.h | ||
5 | unifdef-y += nfsfh.h | ||
6 | unifdef-y += debug.h | ||
7 | unifdef-y += auth.h | ||
diff --git a/include/linux/raid/Kbuild b/include/linux/raid/Kbuild index 73fa27a8d552..2415a64c5e51 100644 --- a/include/linux/raid/Kbuild +++ b/include/linux/raid/Kbuild | |||
@@ -1 +1,2 @@ | |||
1 | header-y += md_p.h md_u.h | 1 | header-y += md_p.h |
2 | header-y += md_u.h | ||
diff --git a/include/linux/sunrpc/Kbuild b/include/linux/sunrpc/Kbuild index 0d1d768a27bf..fb438f158eee 100644 --- a/include/linux/sunrpc/Kbuild +++ b/include/linux/sunrpc/Kbuild | |||
@@ -1 +1 @@ | |||
unifdef-y := debug.h | unifdef-y += debug.h | ||
diff --git a/include/linux/tc_act/Kbuild b/include/linux/tc_act/Kbuild index 5251a505b2f1..78dfbac36375 100644 --- a/include/linux/tc_act/Kbuild +++ b/include/linux/tc_act/Kbuild | |||
@@ -1 +1,4 @@ | |||
1 | header-y += tc_gact.h tc_ipt.h tc_mirred.h tc_pedit.h | 1 | header-y += tc_gact.h |
2 | header-y += tc_ipt.h | ||
3 | header-y += tc_mirred.h | ||
4 | header-y += tc_pedit.h | ||
diff --git a/include/linux/tc_ematch/Kbuild b/include/linux/tc_ematch/Kbuild index 381e93018df6..4a58a1c32a00 100644 --- a/include/linux/tc_ematch/Kbuild +++ b/include/linux/tc_ematch/Kbuild | |||
@@ -1 +1,4 @@ | |||
1 | headers-y := tc_em_cmp.h tc_em_meta.h tc_em_nbyte.h tc_em_text.h | 1 | header-y += tc_em_cmp.h |
2 | header-y += tc_em_meta.h | ||
3 | header-y += tc_em_nbyte.h | ||
4 | header-y += tc_em_text.h | ||
diff --git a/include/mtd/Kbuild b/include/mtd/Kbuild index e1da2a5b2a57..13e7a3c6d794 100644 --- a/include/mtd/Kbuild +++ b/include/mtd/Kbuild | |||
@@ -1,2 +1,6 @@ | |||
1 | unifdef-y := mtd-abi.h | 1 | header-y += inftl-user.h |
2 | header-y := inftl-user.h jffs2-user.h mtd-user.h nftl-user.h | 2 | header-y += jffs2-user.h |
3 | header-y += mtd-user.h | ||
4 | header-y += nftl-user.h | ||
5 | |||
6 | unifdef-y += mtd-abi.h | ||
diff --git a/include/rdma/Kbuild b/include/rdma/Kbuild index eb710ba9b1a0..e7c043216558 100644 --- a/include/rdma/Kbuild +++ b/include/rdma/Kbuild | |||
@@ -1 +1 @@ | |||
header-y := ib_user_mad.h | header-y += ib_user_mad.h | ||
diff --git a/include/scsi/Kbuild b/include/scsi/Kbuild index 14a033d73314..744f85011f1e 100644 --- a/include/scsi/Kbuild +++ b/include/scsi/Kbuild | |||
@@ -1,2 +1,4 @@ | |||
1 | header-y += scsi.h | 1 | header-y += scsi.h |
2 | unifdef-y := scsi_ioctl.h sg.h | 2 | |
3 | unifdef-y += scsi_ioctl.h | ||
4 | unifdef-y += sg.h | ||
diff --git a/include/sound/Kbuild b/include/sound/Kbuild index 3a5a3df61496..fd054a344324 100644 --- a/include/sound/Kbuild +++ b/include/sound/Kbuild | |||
@@ -1,2 +1,10 @@ | |||
1 | header-y := asound_fm.h hdsp.h hdspm.h sfnt_info.h sscape_ioctl.h | 1 | header-y += asound_fm.h |
2 | unifdef-y := asequencer.h asound.h emu10k1.h sb16_csp.h | 2 | header-y += hdsp.h |
3 | header-y += hdspm.h | ||
4 | header-y += sfnt_info.h | ||
5 | header-y += sscape_ioctl.h | ||
6 | |||
7 | unifdef-y += asequencer.h | ||
8 | unifdef-y += asound.h | ||
9 | unifdef-y += emu10k1.h | ||
10 | unifdef-y += sb16_csp.h | ||
diff --git a/include/video/Kbuild b/include/video/Kbuild index 76a60737cc15..a14f9c045b8c 100644 --- a/include/video/Kbuild +++ b/include/video/Kbuild | |||
@@ -1 +1 @@ | |||
unifdef-y := sisfb.h | unifdef-y += sisfb.h | ||