Merged from sys/dev/sio/sio.c revision 1.446.

This commit is contained in:
Yoshihiro Takahashi 2004-07-01 09:32:32 +00:00
parent db6bb7fc01
commit b9d41c7aae
2 changed files with 4 additions and 6 deletions

View file

@ -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

View file

@ -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