tty: n_gsm: Remove unnecessary test in gsm_print_packet()

If the length is zero then the print_hex_dump_bytes won't output
anything, so testing the length before the call is unnecessary.

Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
Link: https://lore.kernel.org/r/20200518084517.2173242-2-gregory.clement@bootlin.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Gregory CLEMENT 2020-05-18 10:45:12 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель 55484fcc50
Коммит 57626ff1c9
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -504,7 +504,6 @@ static void gsm_print_packet(const char *hdr, int addr, int cr,
else
pr_cont("(F)");
if (dlen)
print_hex_dump_bytes("", DUMP_PREFIX_NONE, data, dlen);
}