octeontx2-af: Remove redundant initialization of variable pin
authorColin Ian King <colin.king@canonical.com>
Wed, 29 Sep 2021 13:27:53 +0000 (14:27 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Sep 2021 12:15:13 +0000 (13:15 +0100)
The variable pin is being initialized with a value that is never
read, it is being updated later on in only one case of a switch
statement.  The assignment is redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp.c

index 977a8a40d7d12a9e8739d6f9b9585f6dca1aeec2..85b1f140d3dd1d1fee31bb768b3f5b181cc6d3c6 100644 (file)
@@ -194,7 +194,7 @@ static int otx2_ptp_enable(struct ptp_clock_info *ptp_info,
 {
        struct otx2_ptp *ptp = container_of(ptp_info, struct otx2_ptp,
                                            ptp_info);
-       int pin = -1;
+       int pin;
 
        if (!ptp->nic)
                return -ENODEV;