diff options
Diffstat (limited to 'drivers/sbus/char/aurora.c')
| -rw-r--r-- | drivers/sbus/char/aurora.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/sbus/char/aurora.c b/drivers/sbus/char/aurora.c index e5fa1703856b..650d5e924f47 100644 --- a/drivers/sbus/char/aurora.c +++ b/drivers/sbus/char/aurora.c | |||
| @@ -81,10 +81,6 @@ unsigned char irqs[4] = { | |||
| 81 | int irqhit=0; | 81 | int irqhit=0; |
| 82 | #endif | 82 | #endif |
| 83 | 83 | ||
| 84 | #ifndef MIN | ||
| 85 | #define MIN(a,b) ((a) < (b) ? (a) : (b)) | ||
| 86 | #endif | ||
| 87 | |||
| 88 | static struct tty_driver *aurora_driver; | 84 | static struct tty_driver *aurora_driver; |
| 89 | static struct Aurora_board aurora_board[AURORA_NBOARD] = { | 85 | static struct Aurora_board aurora_board[AURORA_NBOARD] = { |
| 90 | {0,}, | 86 | {0,}, |
| @@ -594,7 +590,7 @@ static void aurora_transmit(struct Aurora_board const * bp, int chip) | |||
| 594 | &bp->r[chip]->r[CD180_TDR]); | 590 | &bp->r[chip]->r[CD180_TDR]); |
| 595 | port->COR2 &= ~COR2_ETC; | 591 | port->COR2 &= ~COR2_ETC; |
| 596 | } | 592 | } |
| 597 | count = MIN(port->break_length, 0xff); | 593 | count = min(port->break_length, 0xff); |
| 598 | sbus_writeb(CD180_C_ESC, | 594 | sbus_writeb(CD180_C_ESC, |
| 599 | &bp->r[chip]->r[CD180_TDR]); | 595 | &bp->r[chip]->r[CD180_TDR]); |
| 600 | sbus_writeb(CD180_C_DELAY, | 596 | sbus_writeb(CD180_C_DELAY, |
| @@ -1575,7 +1571,7 @@ static int aurora_write(struct tty_struct * tty, | |||
| 1575 | save_flags(flags); | 1571 | save_flags(flags); |
| 1576 | while (1) { | 1572 | while (1) { |
| 1577 | cli(); | 1573 | cli(); |
| 1578 | c = MIN(count, MIN(SERIAL_XMIT_SIZE - port->xmit_cnt - 1, | 1574 | c = min(count, min(SERIAL_XMIT_SIZE - port->xmit_cnt - 1, |
| 1579 | SERIAL_XMIT_SIZE - port->xmit_head)); | 1575 | SERIAL_XMIT_SIZE - port->xmit_head)); |
| 1580 | if (c <= 0) { | 1576 | if (c <= 0) { |
| 1581 | restore_flags(flags); | 1577 | restore_flags(flags); |
