mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
serial: msm_serial: fix comparison of different types
Fix the following sparse warning: drivers/tty/serial/msm_serial.c:237:37: error: incompatible types in comparison expression (different type sizes) Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1053f4da62
commit
4f749f2482
@ -234,7 +234,8 @@ static void handle_tx(struct uart_port *port)
|
||||
break;
|
||||
|
||||
if (msm_port->is_uartdm)
|
||||
num_chars = min(tx_count - tf_pointer, sizeof(buf));
|
||||
num_chars = min(tx_count - tf_pointer,
|
||||
(unsigned int)sizeof(buf));
|
||||
else
|
||||
num_chars = 1;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user