Commit fa660684 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

net: marvell: clean up trigraph warning on ??! string



The character sequence ??! is a trigraph and causes the following
clang warning:

drivers/net/ethernet/marvell/mvneta.c:2604:39: warning: trigraph ignored [-Wtrigraphs]

Clean this by replacing it with single ?.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d43b2393
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2666,7 +2666,7 @@ static int mvneta_tx_tso(struct sk_buff *skb, struct net_device *dev,
		return 0;

	if (skb_headlen(skb) < (skb_transport_offset(skb) + tcp_hdrlen(skb))) {
		pr_info("*** Is this even  possible???!?!?\n");
		pr_info("*** Is this even possible?\n");
		return 0;
	}