diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2015-05-11 10:25:58 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-24 12:49:16 -0700 |
commit | 98b3f0d535d72e80235aa8b4f7727ff0c89db6b1 (patch) | |
tree | 37d41ec7b362cf25ce163fb566b779b89cfd9c07 /drivers/tty | |
parent | 8687634b7908c42eb700e0469e110e02833611d1 (diff) |
tty: rocket: fix comment of ROCKET_SPD_HI
This comment does not reflect the actual code. It should be 57600,
not 56000.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/rocket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/rocket.h b/drivers/tty/rocket.h index ec863f35f1a9..c11a9392f219 100644 --- a/drivers/tty/rocket.h +++ b/drivers/tty/rocket.h @@ -44,7 +44,7 @@ struct rocket_version { #define ROCKET_HUP_NOTIFY 0x00000004 #define ROCKET_SPLIT_TERMIOS 0x00000008 #define ROCKET_SPD_MASK 0x00000070 -#define ROCKET_SPD_HI 0x00000010 /* Use 56000 instead of 38400 bps */ +#define ROCKET_SPD_HI 0x00000010 /* Use 57600 instead of 38400 bps */ #define ROCKET_SPD_VHI 0x00000020 /* Use 115200 instead of 38400 bps */ #define ROCKET_SPD_SHI 0x00000030 /* Use 230400 instead of 38400 bps */ #define ROCKET_SPD_WARP 0x00000040 /* Use 460800 instead of 38400 bps */ |