diff options
| author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-07-03 13:49:45 -0400 |
|---|---|---|
| committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-07-03 13:49:45 -0400 |
| commit | 026477c1141b67e98e3bd8bdedb7d4b88a3ecd09 (patch) | |
| tree | 2624a44924c625c367f3cebf937853b9da2de282 /arch/m68k/kernel | |
| parent | 9f2fa466383ce100b90fe52cb4489d7a26bf72a9 (diff) | |
| parent | 29454dde27d8e340bb1987bad9aa504af7081eba (diff) | |
Merge branch 'master' of /home/trondmy/kernel/linux-2.6/
Diffstat (limited to 'arch/m68k/kernel')
| -rw-r--r-- | arch/m68k/kernel/bios32.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/entry.S | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/head.S | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/ints.c | 3 | ||||
| -rw-r--r-- | arch/m68k/kernel/m68k_ksyms.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/process.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/ptrace.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/semaphore.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/setup.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/traps.c | 1 | ||||
| -rw-r--r-- | arch/m68k/kernel/vmlinux.lds.S | 1 |
11 files changed, 1 insertions, 12 deletions
diff --git a/arch/m68k/kernel/bios32.c b/arch/m68k/kernel/bios32.c index a901685eb6a9..af170c2be735 100644 --- a/arch/m68k/kernel/bios32.c +++ b/arch/m68k/kernel/bios32.c | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | * Based on the DEC Alpha bios32.c by Dave Rusling and David Mosberger. | 6 | * Based on the DEC Alpha bios32.c by Dave Rusling and David Mosberger. |
| 7 | */ | 7 | */ |
| 8 | 8 | ||
| 9 | #include <linux/config.h> | ||
| 10 | #include <linux/init.h> | 9 | #include <linux/init.h> |
| 11 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
| 12 | 11 | ||
diff --git a/arch/m68k/kernel/entry.S b/arch/m68k/kernel/entry.S index 449b62b30f45..9083c8b7659f 100644 --- a/arch/m68k/kernel/entry.S +++ b/arch/m68k/kernel/entry.S | |||
| @@ -33,7 +33,6 @@ | |||
| 33 | * for 68040 | 33 | * for 68040 |
| 34 | */ | 34 | */ |
| 35 | 35 | ||
| 36 | #include <linux/config.h> | ||
| 37 | #include <linux/linkage.h> | 36 | #include <linux/linkage.h> |
| 38 | #include <asm/entry.h> | 37 | #include <asm/entry.h> |
| 39 | #include <asm/errno.h> | 38 | #include <asm/errno.h> |
diff --git a/arch/m68k/kernel/head.S b/arch/m68k/kernel/head.S index 70002c146eed..6739e87fe825 100644 --- a/arch/m68k/kernel/head.S +++ b/arch/m68k/kernel/head.S | |||
| @@ -255,7 +255,6 @@ | |||
| 255 | * MAC_USE_SCC_B: Use the SCC port B (printer) for serial debug (default). | 255 | * MAC_USE_SCC_B: Use the SCC port B (printer) for serial debug (default). |
| 256 | */ | 256 | */ |
| 257 | 257 | ||
| 258 | #include <linux/config.h> | ||
| 259 | #include <linux/linkage.h> | 258 | #include <linux/linkage.h> |
| 260 | #include <linux/init.h> | 259 | #include <linux/init.h> |
| 261 | #include <asm/bootinfo.h> | 260 | #include <asm/bootinfo.h> |
diff --git a/arch/m68k/kernel/ints.c b/arch/m68k/kernel/ints.c index 5a8344b93547..b33e37fb7b0e 100644 --- a/arch/m68k/kernel/ints.c +++ b/arch/m68k/kernel/ints.c | |||
| @@ -25,7 +25,6 @@ | |||
| 25 | * which must be served /Roman Zippel | 25 | * which must be served /Roman Zippel |
| 26 | */ | 26 | */ |
| 27 | 27 | ||
| 28 | #include <linux/config.h> | ||
| 29 | #include <linux/module.h> | 28 | #include <linux/module.h> |
| 30 | #include <linux/types.h> | 29 | #include <linux/types.h> |
| 31 | #include <linux/sched.h> | 30 | #include <linux/sched.h> |
| @@ -193,7 +192,7 @@ int setup_irq(unsigned int irq, struct irq_node *node) | |||
| 193 | prev = irq_list + irq; | 192 | prev = irq_list + irq; |
| 194 | if (*prev) { | 193 | if (*prev) { |
| 195 | /* Can't share interrupts unless both agree to */ | 194 | /* Can't share interrupts unless both agree to */ |
| 196 | if (!((*prev)->flags & node->flags & SA_SHIRQ)) { | 195 | if (!((*prev)->flags & node->flags & IRQF_SHARED)) { |
| 197 | spin_unlock_irqrestore(&contr->lock, flags); | 196 | spin_unlock_irqrestore(&contr->lock, flags); |
| 198 | return -EBUSY; | 197 | return -EBUSY; |
| 199 | } | 198 | } |
diff --git a/arch/m68k/kernel/m68k_ksyms.c b/arch/m68k/kernel/m68k_ksyms.c index 1f5e1b5aeda4..aff26a52167c 100644 --- a/arch/m68k/kernel/m68k_ksyms.c +++ b/arch/m68k/kernel/m68k_ksyms.c | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | #include <linux/elfcore.h> | 7 | #include <linux/elfcore.h> |
| 8 | #include <linux/in6.h> | 8 | #include <linux/in6.h> |
| 9 | #include <linux/interrupt.h> | 9 | #include <linux/interrupt.h> |
| 10 | #include <linux/config.h> | ||
| 11 | 10 | ||
| 12 | #include <asm/setup.h> | 11 | #include <asm/setup.h> |
| 13 | #include <asm/machdep.h> | 12 | #include <asm/machdep.h> |
diff --git a/arch/m68k/kernel/process.c b/arch/m68k/kernel/process.c index 33648efb772e..45a46646c1b3 100644 --- a/arch/m68k/kernel/process.c +++ b/arch/m68k/kernel/process.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | * This file handles the architecture-dependent parts of process handling.. | 10 | * This file handles the architecture-dependent parts of process handling.. |
| 11 | */ | 11 | */ |
| 12 | 12 | ||
| 13 | #include <linux/config.h> | ||
| 14 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
| 15 | #include <linux/module.h> | 14 | #include <linux/module.h> |
| 16 | #include <linux/sched.h> | 15 | #include <linux/sched.h> |
diff --git a/arch/m68k/kernel/ptrace.c b/arch/m68k/kernel/ptrace.c index 540638ca81f9..ef89060ea328 100644 --- a/arch/m68k/kernel/ptrace.c +++ b/arch/m68k/kernel/ptrace.c | |||
| @@ -18,7 +18,6 @@ | |||
| 18 | #include <linux/errno.h> | 18 | #include <linux/errno.h> |
| 19 | #include <linux/ptrace.h> | 19 | #include <linux/ptrace.h> |
| 20 | #include <linux/user.h> | 20 | #include <linux/user.h> |
| 21 | #include <linux/config.h> | ||
| 22 | #include <linux/signal.h> | 21 | #include <linux/signal.h> |
| 23 | 22 | ||
| 24 | #include <asm/uaccess.h> | 23 | #include <asm/uaccess.h> |
diff --git a/arch/m68k/kernel/semaphore.c b/arch/m68k/kernel/semaphore.c index 1ebb79baaa8c..d12cbbfe6ebd 100644 --- a/arch/m68k/kernel/semaphore.c +++ b/arch/m68k/kernel/semaphore.c | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | * specific changes in <asm/semaphore-helper.h> | 3 | * specific changes in <asm/semaphore-helper.h> |
| 4 | */ | 4 | */ |
| 5 | 5 | ||
| 6 | #include <linux/config.h> | ||
| 7 | #include <linux/sched.h> | 6 | #include <linux/sched.h> |
| 8 | #include <linux/init.h> | 7 | #include <linux/init.h> |
| 9 | #include <asm/semaphore-helper.h> | 8 | #include <asm/semaphore-helper.h> |
diff --git a/arch/m68k/kernel/setup.c b/arch/m68k/kernel/setup.c index 214a95f9f3ac..f2d7ee0ee18c 100644 --- a/arch/m68k/kernel/setup.c +++ b/arch/m68k/kernel/setup.c | |||
| @@ -8,7 +8,6 @@ | |||
| 8 | * This file handles the architecture-dependent parts of system setup | 8 | * This file handles the architecture-dependent parts of system setup |
| 9 | */ | 9 | */ |
| 10 | 10 | ||
| 11 | #include <linux/config.h> | ||
| 12 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
| 13 | #include <linux/mm.h> | 12 | #include <linux/mm.h> |
| 14 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
diff --git a/arch/m68k/kernel/traps.c b/arch/m68k/kernel/traps.c index e86de7b061cd..4569406a2e1f 100644 --- a/arch/m68k/kernel/traps.c +++ b/arch/m68k/kernel/traps.c | |||
| @@ -18,7 +18,6 @@ | |||
| 18 | * Sets up all exception vectors | 18 | * Sets up all exception vectors |
| 19 | */ | 19 | */ |
| 20 | 20 | ||
| 21 | #include <linux/config.h> | ||
| 22 | #include <linux/sched.h> | 21 | #include <linux/sched.h> |
| 23 | #include <linux/signal.h> | 22 | #include <linux/signal.h> |
| 24 | #include <linux/kernel.h> | 23 | #include <linux/kernel.h> |
diff --git a/arch/m68k/kernel/vmlinux.lds.S b/arch/m68k/kernel/vmlinux.lds.S index 497b924f3c86..99ba315bd0a8 100644 --- a/arch/m68k/kernel/vmlinux.lds.S +++ b/arch/m68k/kernel/vmlinux.lds.S | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | #include <linux/config.h> | ||
| 2 | PHDRS | 1 | PHDRS |
| 3 | { | 2 | { |
| 4 | text PT_LOAD FILEHDR PHDRS FLAGS (7); | 3 | text PT_LOAD FILEHDR PHDRS FLAGS (7); |
