Assume B[0-9]* macros are defined

All of the macros we're using are required by POSIX.1-2001.

Cc: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
Alejandro Colomar 2022-12-02 23:07:56 +01:00 committed by Serge Hallyn
parent f51c6838ac
commit 61299d69ad

View File

@ -23,68 +23,22 @@ static struct {
int spd_baud; int spd_baud;
} speed_table[] = } speed_table[] =
{ {
#ifdef B50 { B50, 50},
{ { B75, 75},
B50, 50}, { B110, 110},
#endif { B134, 134},
#ifdef B75 { B150, 150},
{ { B200, 200},
B75, 75}, { B300, 300},
#endif { B600, 600},
#ifdef B110 { B1200, 1200},
{ { B1800, 1800},
B110, 110}, { B2400, 2400},
#endif { B4800, 4800},
#ifdef B134 { B9600, 9600},
{ { B19200, 19200},
B134, 134}, { B38400, 38400},
#endif { -1, -1}
#ifdef B150
{
B150, 150},
#endif
#ifdef B200
{
B200, 200},
#endif
#ifdef B300
{
B300, 300},
#endif
#ifdef B600
{
B600, 600},
#endif
#ifdef B1200
{
B1200, 1200},
#endif
#ifdef B1800
{
B1800, 1800},
#endif
#ifdef B2400
{
B2400, 2400},
#endif
#ifdef B4800
{
B4800, 4800},
#endif
#ifdef B9600
{
B9600, 9600},
#endif
#ifdef B19200
{
B19200, 19200},
#endif
#ifdef B38400
{
B38400, 38400},
#endif
{
-1, -1}
}; };
static void get_remote_string (char *buf, size_t size) static void get_remote_string (char *buf, size_t size)