diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-13 08:41:37 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-13 08:41:37 +0000 |
commit | 712feca4b400d1cfd8496338c02e6e1fcb3fa956 (patch) | |
tree | 67e8c2bc1b6e4c5ba4a4694f4f34792df25158d0 /libc/termios | |
parent | 0c3a70aa5385e1f2d65cea8dd0bc2b4609e3a040 (diff) |
Add back the 115200 limit
Diffstat (limited to 'libc/termios')
-rw-r--r-- | libc/termios/cfsetspeed.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/termios/cfsetspeed.c b/libc/termios/cfsetspeed.c index e71c5e461..360969a78 100644 --- a/libc/termios/cfsetspeed.c +++ b/libc/termios/cfsetspeed.c @@ -91,6 +91,7 @@ static const struct speed_struct speeds[] = #ifdef B115200 { 115200, B115200 }, #endif +#if 0 /* limited on uClibc, keep in sync w/ bits/termios.h */ #ifdef B153600 { 153600, B153600 }, #endif @@ -136,6 +137,7 @@ static const struct speed_struct speeds[] = #ifdef B4000000 { 4000000, B4000000 }, #endif +#endif }; |