Commit a3d81a37 authored by Darshana Padmadas's avatar Darshana Padmadas Committed by Greg Kroah-Hartman

drivers: staging: dgnc: Replace min with min_t

This patch replaces min with min_t and eliminates
the following warning found by checkpatch.pl:

WARNING: min() should probably be min_t(uint, n, 12)
Signed-off-by: default avatarDarshana Padmadas <darshanapadmadas@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f7d63547
...@@ -1203,7 +1203,7 @@ static void neo_copy_data_from_uart_to_queue(struct channel_t *ch) ...@@ -1203,7 +1203,7 @@ static void neo_copy_data_from_uart_to_queue(struct channel_t *ch)
* IBM pSeries platform. * IBM pSeries platform.
* 15 bytes max appears to be the magic number. * 15 bytes max appears to be the magic number.
*/ */
n = min((uint) n, (uint) 12); n = min_t(uint, n, 12);
/* /*
* Since we are grabbing the linestatus register, which * Since we are grabbing the linestatus register, which
......
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