1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Synchronize with sys/i386/isa/sio.c and sioreg.h revisions1.171 and

1.10, respectively.
This commit is contained in:
KATO Takenori 1997-06-06 13:09:55 +00:00
parent 857e7b5d5b
commit 3d9271a28a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=26478
3 changed files with 11 additions and 6 deletions

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.26 1997/06/02 10:51:34 kato Exp $
* $Id: sio.c,v 1.27 1997/06/04 10:27:53 kato Exp $
*/
#include "opt_comconsole.h"
@ -441,7 +441,7 @@ static struct cdevsw sio_cdevsw = {
};
static int comconsole = -1;
static volatile speed_t comdefaultrate = TTYDEF_SPEED;
static volatile speed_t comdefaultrate = CONSPEED;
static u_int com_events; /* input chars + weighted output completions */
static Port_t siocniobase;
static int sio_timeout;

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
* $Id: sio.c,v 1.26 1997/06/02 10:51:34 kato Exp $
* $Id: sio.c,v 1.27 1997/06/04 10:27:53 kato Exp $
*/
#include "opt_comconsole.h"
@ -441,7 +441,7 @@ static struct cdevsw sio_cdevsw = {
};
static int comconsole = -1;
static volatile speed_t comdefaultrate = TTYDEF_SPEED;
static volatile speed_t comdefaultrate = CONSPEED;
static u_int com_events; /* input chars + weighted output completions */
static Port_t siocniobase;
static int sio_timeout;

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)comreg.h 7.2 (Berkeley) 5/9/91
* $Id: sioreg.h,v 1.5 1997/04/05 15:05:16 kato Exp $
* $Id: sioreg.h,v 1.6 1997/06/04 10:27:53 kato Exp $
*/
@ -111,4 +111,9 @@
#define MSR_DCTS 0x01
/* speed to initialize to during chip tests */
#define SIO_TEST_SPEED 9600
#define SIO_TEST_SPEED 9600
/* default serial console speed if not set with sysctl or probed from boot */
#ifndef CONSPEED
#define CONSPEED 9600
#endif