From: Bernhard Reutner-Fischer Date: Tue, 20 Oct 2009 17:40:20 +0000 (+0200) Subject: add B921600 X-Git-Tag: 1_16_0~353 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e707a3000b2f6e2f684b6e85cd60590318d157c4;p=oweals%2Fbusybox.git add B921600 Signed-off-by: Bernhard Reutner-Fischer --- 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;