Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dd61d963 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller
Browse files

net: phy: dp83640: fix checkpath error

parent a60e7e1e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -851,8 +851,8 @@ static int match(struct sk_buff *skb, unsigned int type, struct rxts *rxts)

	seqid = (u16 *)(data + offset + OFF_PTP_SEQUENCE_ID);

	return (rxts->msgtype == (*msgtype & 0xf) &&
		rxts->seqid   == ntohs(*seqid));
	return rxts->msgtype == (*msgtype & 0xf) &&
		rxts->seqid   == ntohs(*seqid);
}

static void dp83640_free_clocks(void)