diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-02-05 10:52:29 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-02-05 10:52:29 +0000 |
commit | 59a675b22026e29e7f281d7b832de67dd8559b83 (patch) | |
tree | 2f4174947b04a7e988cc476414ecafb5f7c46dbb /arch/mips/lasat/setup.c | |
parent | 9b4a1617772d6d5ab5eeda0cd95302fae119e359 (diff) | |
download | blackbird-op-linux-59a675b22026e29e7f281d7b832de67dd8559b83.tar.gz blackbird-op-linux-59a675b22026e29e7f281d7b832de67dd8559b83.zip |
[SERIAL] uart_port flags member should use UPF_*
Convert usage of ASYNC_* to UPF_*.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/mips/lasat/setup.c')
-rw-r--r-- | arch/mips/lasat/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/lasat/setup.c b/arch/mips/lasat/setup.c index cefcf738bc00..83eb08b7a072 100644 --- a/arch/mips/lasat/setup.c +++ b/arch/mips/lasat/setup.c @@ -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) { |