Commit 11cca8cc authored by Thorsten Blum's avatar Thorsten Blum Committed by Max Filippov
Browse files

tty: xtensa/iss: Use min() to fix Coccinelle warning



Inline strlen() and use min() to fix the following Coccinelle/coccicheck
warning reported by minmax.cocci:

	WARNING opportunity for min()

Signed-off-by: default avatarThorsten Blum <thorsten.blum@toblux.com>
Message-Id: <20240404075811.6936-3-thorsten.blum@toblux.com>
Reviewed-by: default avatarJiri Slaby <jirislaby@kernel.org>
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent 0e60f0b7
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -166,10 +166,8 @@ late_initcall(rs_init);

static void iss_console_write(struct console *co, const char *s, unsigned count)
{
	if (s && *s != 0) {
		int len = strlen(s);
		simc_write(1, s, count < len ? count : len);
	}
	if (s && *s != 0)
		simc_write(1, s, min(count, strlen(s)));
}

static struct tty_driver* iss_console_device(struct console *c, int *index)