Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95192
b: refs/heads/master
c: 0bcc4ca
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Apr 30, 2008
1 parent e223072 commit c7cde2d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 42 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 810ab09b2f3a4e9a6f553e3d1e84a27f4074de9c
refs/heads/master: 0bcc4caadc8f5396b52950ee03c67b76875602df
62 changes: 21 additions & 41 deletions trunk/drivers/char/moxa.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ static void moxa_receive_data(struct moxa_port *);
*/
static int MoxaDriverIoctl(struct tty_struct *, unsigned int, unsigned long);
static int MoxaDriverPoll(void);
static int MoxaPortsOfCard(int);
static void MoxaPortEnable(struct moxa_port *);
static void MoxaPortDisable(struct moxa_port *);
static int MoxaPortSetTermio(struct moxa_port *, struct ktermios *, speed_t);
Expand Down Expand Up @@ -715,6 +714,9 @@ static int moxa_init_board(struct moxa_board_conf *brd, struct device *dev)

brd->ready = 1;

if (!timer_pending(&moxaTimer))
mod_timer(&moxaTimer, jiffies + HZ / 50);

return 0;
err_free:
kfree(brd->ports);
Expand Down Expand Up @@ -856,8 +858,6 @@ static int __init moxa_init(void)
return -1;
}

mod_timer(&moxaTimer, jiffies + HZ / 50);

/* Find the boards defined from module args. */
#ifdef MODULE
{
Expand Down Expand Up @@ -1285,47 +1285,49 @@ static void moxa_hangup(struct tty_struct *tty)

static void moxa_poll(unsigned long ignored)
{
register int card;
struct moxa_port *ch;
struct tty_struct *tp;
int i, ports;
struct tty_struct *tty;
unsigned int card;
int i;

del_timer(&moxaTimer);

if (MoxaDriverPoll() < 0) {
mod_timer(&moxaTimer, jiffies + HZ / 50);
return;
}

for (card = 0; card < MAX_BOARDS; card++) {
if ((ports = MoxaPortsOfCard(card)) <= 0)
if (!moxa_boards[card].ready)
continue;
ch = moxa_boards[card].ports;
for (i = 0; i < ports; i++, ch++) {
for (i = 0; i < moxa_boards[card].numPorts; i++, ch++) {
if ((ch->asyncflags & ASYNC_INITIALIZED) == 0)
continue;
if (!(ch->statusflags & THROTTLE) &&
(MoxaPortRxQueue(ch) > 0))
moxa_receive_data(ch);
if ((tp = ch->tty) == 0)
tty = ch->tty;
if (tty == NULL)
continue;
if (ch->statusflags & LOWWAIT) {
if (MoxaPortTxQueue(ch) <= WAKEUP_CHARS) {
if (!tp->stopped) {
if (!tty->stopped) {
ch->statusflags &= ~LOWWAIT;
tty_wakeup(tp);
tty_wakeup(tty);
}
}
}
if (!I_IGNBRK(tp) && (MoxaPortResetBrkCnt(ch) > 0)) {
tty_insert_flip_char(tp, 0, TTY_BREAK);
tty_schedule_flip(tp);
if (!I_IGNBRK(tty) && (MoxaPortResetBrkCnt(ch) > 0)) {
tty_insert_flip_char(tty, 0, TTY_BREAK);
tty_schedule_flip(tty);
}
if (MoxaPortDCDChange(ch)) {
if (ch->asyncflags & ASYNC_CHECK_CD) {
if (MoxaPortDCDON(ch))
wake_up_interruptible(&ch->open_wait);
else {
tty_hangup(tp);
tty_hangup(tty);
wake_up_interruptible(&ch->open_wait);
ch->asyncflags &= ~ASYNC_NORMAL_ACTIVE;
}
Expand Down Expand Up @@ -1671,15 +1673,14 @@ static int MoxaDriverIoctl(struct tty_struct *tty, unsigned int cmd,
return -ENOIOCTLCMD;
}

int MoxaDriverPoll(void)
static int MoxaDriverPoll(void)
{
struct moxa_board_conf *brd;
struct moxa_port *p;
register ushort temp;
register int card;
void __iomem *ofsAddr;
void __iomem *ip;
int port, ports;
unsigned int port, ports, card;
ushort temp;

for (card = 0; card < MAX_BOARDS; card++) {
brd = &moxa_boards[card];
Expand Down Expand Up @@ -1729,19 +1730,8 @@ int MoxaDriverPoll(void)
}
}
moxaLowWaterChk = 0;
return (0);
}

/*****************************************************************************
* Card level function: *
* 1. MoxaPortsOfCard(int cardno); *
*****************************************************************************/
int MoxaPortsOfCard(int cardno)
{

if (moxa_boards[cardno].boardType == 0)
return (0);
return (moxa_boards[cardno].numPorts);
return 0;
}

/*****************************************************************************
Expand Down Expand Up @@ -1812,16 +1802,6 @@ int MoxaPortsOfCard(int cardno)
* -1 : no any Moxa card.
*
*
* Function 4: Get the ports of this card.
* Syntax:
* int MoxaPortsOfCard(int cardno);
*
* int cardno : card number (0 - 3)
*
* return: 0 : this card is invalid
* 8/16/24/32
*
*
* Function 6: Enable this port to start Tx/Rx data.
* Syntax:
* void MoxaPortEnable(int port);
Expand Down

0 comments on commit c7cde2d

Please sign in to comment.