Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 20138
b: refs/heads/master
c: 59a675b
h: refs/heads/master
v: v3
  • Loading branch information
Russell King authored and Russell King committed Feb 5, 2006
1 parent de6b2e7 commit 7a6df2c
Show file tree
Hide file tree
Showing 20 changed files with 28 additions and 33 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9b4a1617772d6d5ab5eeda0cd95302fae119e359
refs/heads/master: 59a675b22026e29e7f281d7b832de67dd8559b83
2 changes: 1 addition & 1 deletion trunk/arch/mips/cobalt/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ void __init plat_setup(void)
uart.type = PORT_UNKNOWN;
uart.uartclk = 18432000;
uart.irq = COBALT_SERIAL_IRQ;
uart.flags = STD_COM_FLAGS;
uart.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
uart.iobase = 0xc800000;
uart.iotype = UPIO_PORT;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/lasat/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void __init serial_init(void)

memset(&s, 0, sizeof(s));

s.flags = STD_COM_FLAGS;
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
s.iotype = UPIO_MEM;

if (mips_machtype == MACH_LASAT_100) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/mips-boards/atlas/atlas_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void __init serial_init(void)
#endif
s.irq = ATLASINT_UART;
s.uartclk = ATLAS_BASE_BAUD * 16;
s.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_AUTO_IRQ;
s.iotype = UPIO_PORT;
s.regshift = 3;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/mips-boards/sead/sead_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void __init serial_init(void)
#endif
s.irq = MIPSCPU_INT_BASE + MIPSCPU_INT_UART0;
s.uartclk = SEAD_BASE_BAUD * 16;
s.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ;
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_AUTO_IRQ;
s.iotype = UPIO_PORT;
s.regshift = 3;

Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/mips-boards/sim/sim_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static void __init serial_init(void)
but poll for now */
s.irq = 0;
s.uartclk = BASE_BAUD * 16;
s.flags = ASYNC_BOOT_AUTOCONF | UPF_SKIP_TEST;
s.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
s.iotype = UPIO_PORT;
s.regshift = 0;
s.timeout = 4;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/momentum/jaguar_atx/ja-console.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static void inline ja_console_probe(void)
up.uartclk = JAGUAR_ATX_UART_CLK;
up.regshift = 2;
up.iotype = UPIO_MEM;
up.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
up.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
up.line = 0;

if (early_serial_setup(&up))
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/mips/philips/pnx8550/common/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct ip3106_port ip3106_ports[] = {
.uartclk = 3692300,
.fifosize = 16,
.ops = &ip3106_pops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 0,
},
},
Expand All @@ -87,7 +87,7 @@ struct ip3106_port ip3106_ports[] = {
.uartclk = 3692300,
.fifosize = 16,
.ops = &ip3106_pops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 1,
},
},
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/pmc-sierra/yosemite/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static void __init py_uart_setup(void)
up.uartclk = TITAN_UART_CLK;
up.regshift = 0;
up.iotype = UPIO_MEM;
up.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
up.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
up.line = 0;

if (early_serial_setup(&up))
Expand Down
13 changes: 4 additions & 9 deletions trunk/arch/mips/sgi-ip32/ip32-setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ static inline void str2eaddr(unsigned char *ea, unsigned char *str)
#include <linux/tty.h>
#include <linux/serial.h>
#include <linux/serial_core.h>
extern int early_serial_setup(struct uart_port *port);

#define STD_COM_FLAGS (ASYNC_SKIP_TEST)
#define BASE_BAUD (1843200 / 16)

#endif /* CONFIG_SERIAL_8250 */

/* An arbitrary time; this can be decreased if reliability looks good */
Expand Down Expand Up @@ -110,8 +105,8 @@ void __init plat_setup(void)
o2_serial[0].type = PORT_16550A;
o2_serial[0].line = 0;
o2_serial[0].irq = MACEISA_SERIAL1_IRQ;
o2_serial[0].flags = STD_COM_FLAGS;
o2_serial[0].uartclk = BASE_BAUD * 16;
o2_serial[0].flags = UPF_SKIP_TEST;
o2_serial[0].uartclk = 1843200;
o2_serial[0].iotype = UPIO_MEM;
o2_serial[0].membase = (char *)&mace->isa.serial1;
o2_serial[0].fifosize = 14;
Expand All @@ -121,8 +116,8 @@ void __init plat_setup(void)
o2_serial[1].type = PORT_16550A;
o2_serial[1].line = 1;
o2_serial[1].irq = MACEISA_SERIAL2_IRQ;
o2_serial[1].flags = STD_COM_FLAGS;
o2_serial[1].uartclk = BASE_BAUD * 16;
o2_serial[1].flags = UPF_SKIP_TEST;
o2_serial[1].uartclk = 1843200;
o2_serial[1].iotype = UPIO_MEM;
o2_serial[1].membase = (char *)&mace->isa.serial2;
o2_serial[1].fifosize = 14;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/bamboo.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ bamboo_early_serial_map(void)
port.uartclk = clocks.uart0;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/bubinga.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ bubinga_early_serial_map(void)
port.uartclk = uart_clock;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/ebony.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ ebony_early_serial_map(void)
port.uartclk = clocks.uart0;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/luan.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ luan_early_serial_map(void)
port.uartclk = clocks.uart0;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/ocotea.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ ocotea_early_serial_map(void)
port.uartclk = clocks.uart0;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/xilinx_ml300.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ml300_early_serial_map(void)
port.uartclk = old_ports[i].baud_base * 16;
port.regshift = old_ports[i].iomem_reg_shift;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = i;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/4xx/yucca.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ yucca_early_serial_map(void)
port.uartclk = clocks.uart0;
port.regshift = 0;
port.iotype = UPIO_MEM;
port.flags = ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST;
port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST;
port.line = 0;

if (early_serial_setup(&port) != 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/spruce.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ spruce_early_serial_map(void)
memset(&serial_req, 0, sizeof(serial_req));
serial_req.uartclk = uart_clk;
serial_req.irq = UART0_INT;
serial_req.flags = ASYNC_BOOT_AUTOCONF;
serial_req.flags = UPF_BOOT_AUTOCONF;
serial_req.iotype = UPIO_MEM;
serial_req.membase = (u_char *)UART0_IO_BASE;
serial_req.regshift = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/serial/m32r_sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
#include <asm/serial.h>

/* Standard COM flags */
#define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
#define STD_COM_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST)

/*
* SERIAL_PORT_DFNS tells us about built-in ports that have no
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/serial/sh-sci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,7 @@ static struct sci_port sci_ports[] = {
.iotype = UPIO_MEM,
.irq = 61,
.ops = &sci_uart_ops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 0,
},
.type = PORT_SCIF,
Expand All @@ -1485,7 +1485,7 @@ static struct sci_port sci_ports[] = {
.iotype = UPIO_MEM,
.irq = 62,
.ops = &sci_uart_ops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 1,
},
.type = PORT_SCIF,
Expand All @@ -1499,7 +1499,7 @@ static struct sci_port sci_ports[] = {
.iotype = UPIO_MEM,
.irq = 63,
.ops = &sci_uart_ops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 2,
},
.type = PORT_SCIF,
Expand All @@ -1514,7 +1514,7 @@ static struct sci_port sci_ports[] = {
.iotype = UPIO_MEM,
.irq = 43,
.ops = &sci_uart_ops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 0,
},
.type = PORT_SCIF,
Expand All @@ -1528,7 +1528,7 @@ static struct sci_port sci_ports[] = {
.iotype = UPIO_MEM,
.irq = 79,
.ops = &sci_uart_ops,
.flags = ASYNC_BOOT_AUTOCONF,
.flags = UPF_BOOT_AUTOCONF,
.line = 1,
},
.type = PORT_SCIF,
Expand Down

0 comments on commit 7a6df2c

Please sign in to comment.