Remove irrelevant comment

This commit is contained in:
XANTRONIX Development 2020-05-26 23:41:55 -04:00 committed by XANTRONIX Industrial
parent de0c0ef844
commit df23b0b8e3

View file

@ -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;