diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-08-30 05:27:15 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-10-01 12:09:16 -0400 |
commit | bcf5111a58c7db968c3fb9cd77e340a5e076f549 (patch) | |
tree | bda7a24d440798ab72750d9243c8717c2ea2f230 | |
parent | 1d5e799663046917a0eb085e716d818af20050b2 (diff) |
[SERIAL] Remove wrong asm/serial.h inclusions
asm/serial.h is supposed to contain the definitions for the architecture
specific 8250 ports for the 8250 driver. It may also define BASE_BAUD,
but this is the base baud for the architecture specific ports _only_.
Therefore, nothing other than the 8250 driver should be including this
header file. In order to move towards this goal, here is a patch which
removes some of the more obvious incorrect includes of the file.
Acked-by: Paul Fulghum <paulkf@microgate.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
-rw-r--r-- | arch/frv/kernel/setup.c | 1 | ||||
-rw-r--r-- | arch/ia64/kernel/setup.c | 1 | ||||
-rw-r--r-- | arch/mips/cobalt/setup.c | 1 | ||||
-rw-r--r-- | arch/mips/lasat/setup.c | 1 | ||||
-rw-r--r-- | drivers/char/pcmcia/synclink_cs.c | 1 | ||||
-rw-r--r-- | drivers/char/synclink.c | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/arch/frv/kernel/setup.c b/arch/frv/kernel/setup.c index d96a57e5f030..a8c61dac1cee 100644 --- a/arch/frv/kernel/setup.c +++ b/arch/frv/kernel/setup.c | |||
@@ -31,7 +31,6 @@ | |||
31 | #include <linux/serial_reg.h> | 31 | #include <linux/serial_reg.h> |
32 | 32 | ||
33 | #include <asm/setup.h> | 33 | #include <asm/setup.h> |
34 | #include <asm/serial.h> | ||
35 | #include <asm/irq.h> | 34 | #include <asm/irq.h> |
36 | #include <asm/sections.h> | 35 | #include <asm/sections.h> |
37 | #include <asm/pgalloc.h> | 36 | #include <asm/pgalloc.h> |
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index 84f93c0f2c66..c4caa8003492 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c | |||
@@ -54,7 +54,6 @@ | |||
54 | #include <asm/processor.h> | 54 | #include <asm/processor.h> |
55 | #include <asm/sal.h> | 55 | #include <asm/sal.h> |
56 | #include <asm/sections.h> | 56 | #include <asm/sections.h> |
57 | #include <asm/serial.h> | ||
58 | #include <asm/setup.h> | 57 | #include <asm/setup.h> |
59 | #include <asm/smp.h> | 58 | #include <asm/smp.h> |
60 | #include <asm/system.h> | 59 | #include <asm/system.h> |
diff --git a/arch/mips/cobalt/setup.c b/arch/mips/cobalt/setup.c index c01a0170e590..0b347cffc768 100644 --- a/arch/mips/cobalt/setup.c +++ b/arch/mips/cobalt/setup.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include <asm/processor.h> | 23 | #include <asm/processor.h> |
24 | #include <asm/reboot.h> | 24 | #include <asm/reboot.h> |
25 | #include <asm/gt64120.h> | 25 | #include <asm/gt64120.h> |
26 | #include <asm/serial.h> | ||
27 | 26 | ||
28 | #include <asm/mach-cobalt/cobalt.h> | 27 | #include <asm/mach-cobalt/cobalt.h> |
29 | 28 | ||
diff --git a/arch/mips/lasat/setup.c b/arch/mips/lasat/setup.c index 0ffc43c600d9..14c55168f1ff 100644 --- a/arch/mips/lasat/setup.c +++ b/arch/mips/lasat/setup.c | |||
@@ -34,7 +34,6 @@ | |||
34 | #include <asm/cpu.h> | 34 | #include <asm/cpu.h> |
35 | #include <asm/bootinfo.h> | 35 | #include <asm/bootinfo.h> |
36 | #include <asm/irq.h> | 36 | #include <asm/irq.h> |
37 | #include <asm/serial.h> | ||
38 | #include <asm/lasat/lasat.h> | 37 | #include <asm/lasat/lasat.h> |
39 | #include <asm/lasat/serial.h> | 38 | #include <asm/lasat/serial.h> |
40 | 39 | ||
diff --git a/drivers/char/pcmcia/synclink_cs.c b/drivers/char/pcmcia/synclink_cs.c index 00f574cbb0d4..539efe782618 100644 --- a/drivers/char/pcmcia/synclink_cs.c +++ b/drivers/char/pcmcia/synclink_cs.c | |||
@@ -57,7 +57,6 @@ | |||
57 | #include <linux/netdevice.h> | 57 | #include <linux/netdevice.h> |
58 | #include <linux/vmalloc.h> | 58 | #include <linux/vmalloc.h> |
59 | #include <linux/init.h> | 59 | #include <linux/init.h> |
60 | #include <asm/serial.h> | ||
61 | #include <linux/delay.h> | 60 | #include <linux/delay.h> |
62 | #include <linux/ioctl.h> | 61 | #include <linux/ioctl.h> |
63 | 62 | ||
diff --git a/drivers/char/synclink.c b/drivers/char/synclink.c index 78b1b1a2732b..c53f4579a59f 100644 --- a/drivers/char/synclink.c +++ b/drivers/char/synclink.c | |||
@@ -87,7 +87,6 @@ | |||
87 | 87 | ||
88 | #include <linux/vmalloc.h> | 88 | #include <linux/vmalloc.h> |
89 | #include <linux/init.h> | 89 | #include <linux/init.h> |
90 | #include <asm/serial.h> | ||
91 | 90 | ||
92 | #include <linux/delay.h> | 91 | #include <linux/delay.h> |
93 | #include <linux/ioctl.h> | 92 | #include <linux/ioctl.h> |