net: marvell: clean up trigraph warning on ??! string
authorColin Ian King <colin.king@canonical.com>
Tue, 20 Jul 2021 13:03:11 +0000 (14:03 +0100)
committerDavid S. Miller <davem@davemloft.net>
Tue, 20 Jul 2021 14:24:39 +0000 (07:24 -0700)
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: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvneta.c

index 8aabd10..975a1a7 100644 (file)
@@ -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;
        }