Commit af95469c authored by Maximilian Attems's avatar Maximilian Attems Committed by Linus Torvalds

[PATCH] drivers/char/riscom8.c MIN/MAX removal

Signed-off-by: default avatarMaximilian Attems <janitor@sternwelten.at>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9dbc7acd
...@@ -75,10 +75,6 @@ ...@@ -75,10 +75,6 @@
ASYNC_SPD_HI | ASYNC_SPEED_VHI | ASYNC_SESSION_LOCKOUT | \ ASYNC_SPD_HI | ASYNC_SPEED_VHI | ASYNC_SESSION_LOCKOUT | \
ASYNC_PGRP_LOCKOUT | ASYNC_CALLOUT_NOHUP) ASYNC_PGRP_LOCKOUT | ASYNC_CALLOUT_NOHUP)
#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#endif
#define RS_EVENT_WRITE_WAKEUP 0 #define RS_EVENT_WRITE_WAKEUP 0
static struct riscom_board * IRQ_to_board[16]; static struct riscom_board * IRQ_to_board[16];
...@@ -483,7 +479,7 @@ static inline void rc_transmit(struct riscom_board const * bp) ...@@ -483,7 +479,7 @@ static inline void rc_transmit(struct riscom_board const * bp)
rc_out(bp, CD180_TDR, CD180_C_SBRK); rc_out(bp, CD180_TDR, CD180_C_SBRK);
port->COR2 &= ~COR2_ETC; port->COR2 &= ~COR2_ETC;
} }
count = MIN(port->break_length, 0xff); count = min_t(int, port->break_length, 0xff);
rc_out(bp, CD180_TDR, CD180_C_ESC); rc_out(bp, CD180_TDR, CD180_C_ESC);
rc_out(bp, CD180_TDR, CD180_C_DELAY); rc_out(bp, CD180_TDR, CD180_C_DELAY);
rc_out(bp, CD180_TDR, count); rc_out(bp, CD180_TDR, count);
...@@ -1165,7 +1161,7 @@ static int rc_write(struct tty_struct * tty, int from_user, ...@@ -1165,7 +1161,7 @@ static int rc_write(struct tty_struct * tty, int from_user,
down(&tmp_buf_sem); down(&tmp_buf_sem);
while (1) { while (1) {
cli(); cli();
c = MIN(count, MIN(SERIAL_XMIT_SIZE - port->xmit_cnt - 1, c = min_t(int, count, min(SERIAL_XMIT_SIZE - port->xmit_cnt - 1,
SERIAL_XMIT_SIZE - port->xmit_head)); SERIAL_XMIT_SIZE - port->xmit_head));
if (c <= 0) if (c <= 0)
break; break;
...@@ -1178,7 +1174,7 @@ static int rc_write(struct tty_struct * tty, int from_user, ...@@ -1178,7 +1174,7 @@ static int rc_write(struct tty_struct * tty, int from_user,
} }
cli(); cli();
c = MIN(c, MIN(SERIAL_XMIT_SIZE - port->xmit_cnt - 1, c = min_t(c, min(SERIAL_XMIT_SIZE - port->xmit_cnt - 1,
SERIAL_XMIT_SIZE - port->xmit_head)); SERIAL_XMIT_SIZE - port->xmit_head));
memcpy(port->xmit_buf + port->xmit_head, tmp_buf, c); memcpy(port->xmit_buf + port->xmit_head, tmp_buf, c);
port->xmit_head = (port->xmit_head + c) & (SERIAL_XMIT_SIZE-1); port->xmit_head = (port->xmit_head + c) & (SERIAL_XMIT_SIZE-1);
...@@ -1193,7 +1189,7 @@ static int rc_write(struct tty_struct * tty, int from_user, ...@@ -1193,7 +1189,7 @@ static int rc_write(struct tty_struct * tty, int from_user,
} else { } else {
while (1) { while (1) {
cli(); cli();
c = MIN(count, MIN(SERIAL_XMIT_SIZE - port->xmit_cnt - 1, c = min_t(int, count, min(SERIAL_XMIT_SIZE - port->xmit_cnt - 1,
SERIAL_XMIT_SIZE - port->xmit_head)); SERIAL_XMIT_SIZE - port->xmit_head));
if (c <= 0) { if (c <= 0) {
restore_flags(flags); restore_flags(flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment