From df23b0b8e361116a0611c65ba922c709c7fdb0fb Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 26 May 2020 23:41:55 -0400 Subject: [PATCH] Remove irrelevant comment --- src/kiss.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/kiss.c b/src/kiss.c index 3573416..8635240 100644 --- a/src/kiss.c +++ b/src/kiss.c @@ -128,12 +128,6 @@ ssize_t patty_kiss_tnc_decode(patty_kiss_tnc *tnc, void *frame, size_t *len, int goto error_io; } - /* - * Not all KISS TNCs will emit a type byte at the start of a frame - * to the host; if the low nybble has a value of zero, then presume - * the high nybble to be the radio port number from which the - * frame originated. - */ if (i == 1 && (c & 0x0f) == 0) { *port = (c & 0xf0) >> 4;