diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-20 19:40:20 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-20 19:53:24 +0200 |
commit | e707a3000b2f6e2f684b6e85cd60590318d157c4 (patch) | |
tree | 64b5f0d559930dee2107aefcd88c593732973c52 /libbb | |
parent | a4e4a654846dfc4c1b4b080ad850b223da1a886c (diff) | |
download | busybox-e707a3000b2f6e2f684b6e85cd60590318d157c4.tar.gz |
add B921600
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/speed_table.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbb/speed_table.c b/libbb/speed_table.c index 05fe66c64..af676e1eb 100644 --- a/libbb/speed_table.c +++ b/libbb/speed_table.c @@ -51,6 +51,9 @@ static const struct speed_map speeds[] = { #ifdef B460800 {B460800, 460800/256 + 0x8000U}, #endif +#ifdef B921600 + {B921600, 921600/256 + 0x8000U}, +#endif }; enum { NUM_SPEEDS = ARRAY_SIZE(speeds) }; @@ -93,7 +96,7 @@ int main(void) unsigned long v; speed_t s; - for (v = 0 ; v < 500000; v++) { + for (v = 0 ; v < 1000000; v++) { s = tty_value_to_baud(v); if (s == (speed_t) -1) { continue; |