Add support for 28800 baud to sio.

PR: 30906
Submitted by: "Daniel O'Connor" <darius@chowder.dons.net.au>
This commit is contained in:
Jonathan Lemon 2001-09-29 04:49:11 +00:00
parent ca925d9c17
commit 750c427849
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84103
4 changed files with 4 additions and 1 deletions

View file

@ -898,6 +898,7 @@ static struct sbaud_table
{ B2400, 2400 },
{ B4800, 4800 },
{ B9600, 9600 },
{ B28800, 28800 },
#ifdef B19200
{ B19200, 19200 },
#else /* ! defined (B19200) */

View file

@ -119,7 +119,7 @@ buffers, the NS16550A has 16 character FIFO input and output buffers.
.Pp
Input and output for each line may set to one of following baud rates;
50, 75, 110, 134.5, 150, 300, 600, 1200, 1800, 2400, 4800, 9600,
19200, 38400, 57600, or 115200. Your hardware may limit your baud
19200, 28800, 38400, 57600, or 115200. Your hardware may limit your baud
rate choices.
.Pp
The driver supports `multiport' cards.

View file

@ -429,6 +429,7 @@ static struct speedtab comspeedtab[] = {
{ 4800, COMBRD(4800) },
{ 9600, COMBRD(9600) },
{ 19200, COMBRD(19200) },
{ 28800, COMBRD(28800) },
{ 38400, COMBRD(38400) },
{ 57600, COMBRD(57600) },
{ 115200, COMBRD(115200) },

View file

@ -429,6 +429,7 @@ static struct speedtab comspeedtab[] = {
{ 4800, COMBRD(4800) },
{ 9600, COMBRD(9600) },
{ 19200, COMBRD(19200) },
{ 28800, COMBRD(28800) },
{ 38400, COMBRD(38400) },
{ 57600, COMBRD(57600) },
{ 115200, COMBRD(115200) },