mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Merged from sys/dev/sio/sio.c revision 1.446.
This commit is contained in:
parent
db6bb7fc01
commit
b9d41c7aae
2 changed files with 4 additions and 6 deletions
|
|
@ -369,7 +369,7 @@ struct com_s {
|
|||
static int espattach(struct com_s *com, Port_t esp_port);
|
||||
#endif
|
||||
|
||||
static int combreak(struct tty *tp, int sig);
|
||||
static void combreak(struct tty *tp, int sig);
|
||||
static timeout_t siobusycheck;
|
||||
static u_int siodivisor(u_long rclk, speed_t speed);
|
||||
static timeout_t siodtrwakeup;
|
||||
|
|
@ -3192,7 +3192,7 @@ repeat:
|
|||
goto repeat;
|
||||
}
|
||||
|
||||
static int
|
||||
static void
|
||||
combreak(tp, sig)
|
||||
struct tty *tp;
|
||||
int sig;
|
||||
|
|
@ -3212,7 +3212,6 @@ combreak(tp, sig)
|
|||
else
|
||||
sio_setreg(com, com_cfcr, com->cfcr_image &= ~CFCR_SBREAK);
|
||||
#endif
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
|
|
@ -369,7 +369,7 @@ struct com_s {
|
|||
static int espattach(struct com_s *com, Port_t esp_port);
|
||||
#endif
|
||||
|
||||
static int combreak(struct tty *tp, int sig);
|
||||
static void combreak(struct tty *tp, int sig);
|
||||
static timeout_t siobusycheck;
|
||||
static u_int siodivisor(u_long rclk, speed_t speed);
|
||||
static timeout_t siodtrwakeup;
|
||||
|
|
@ -3192,7 +3192,7 @@ repeat:
|
|||
goto repeat;
|
||||
}
|
||||
|
||||
static int
|
||||
static void
|
||||
combreak(tp, sig)
|
||||
struct tty *tp;
|
||||
int sig;
|
||||
|
|
@ -3212,7 +3212,6 @@ combreak(tp, sig)
|
|||
else
|
||||
sio_setreg(com, com_cfcr, com->cfcr_image &= ~CFCR_SBREAK);
|
||||
#endif
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue