From: Jiri Slaby Date: Wed, 19 Feb 2020 08:41:00 +0000 (+0100) Subject: n_hdlc: use clamp() for maxframe X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c549725ff85ab2dee1b8453a92ab437150ece800;p=openwrt%2Fstaging%2Fblogic.git n_hdlc: use clamp() for maxframe It is easier to read. And use MAX_HDLC_FRAME_SIZE instead of magic constant. Signed-off-by: Jiri Slaby Link: https://lore.kernel.org/r/20200219084118.26491-6-jslaby@suse.cz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/n_hdlc.c b/drivers/tty/n_hdlc.c index 87f22e57e4f6..a713a98fea2e 100644 --- a/drivers/tty/n_hdlc.c +++ b/drivers/tty/n_hdlc.c @@ -894,10 +894,7 @@ static int __init n_hdlc_init(void) int status; /* range check maxframe arg */ - if (maxframe < 4096) - maxframe = 4096; - else if (maxframe > 65535) - maxframe = 65535; + maxframe = clamp(maxframe, 4096, MAX_HDLC_FRAME_SIZE); status = tty_register_ldisc(N_HDLC, &n_hdlc_ldisc); if (!status)