igb: Fix warning pin may be used uninitialized
authorAlexander Duyck <alexander.h.duyck@redhat.com>
Fri, 6 Mar 2015 03:34:09 +0000 (03:34 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 6 Mar 2015 10:47:09 +0000 (02:47 -0800)
When building the kernel using the gcc 4.8.3 compiler included in Fedora 20
I was repeatedly seeing the warning:

 drivers/net/ethernet/intel/igb/igb_ptp.c: In function ‘igb_ptp_feature_enable_i210’:
 drivers/net/ethernet/intel/igb/igb_ptp.c:395:21: warning: ‘pin’ may be used uninitialized in this function
 [-Wmaybe-uninitialized]
   tssdp &= ~ts_sdp_en[pin];
                     ^
 drivers/net/ethernet/intel/igb/igb_ptp.c:471:6: note: ‘pin’ was declared here
   int pin;
       ^

To resolve it I am assigning the pin a value of -1 when it is instantiated.

Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igb/igb_ptp.c

index d20fc8ed11f1574a2ae0fa4649be23fe204e1308..525e5c461e791a7b8eb08bada878740498e2a07e 100644 (file)
@@ -468,7 +468,7 @@ static int igb_ptp_feature_enable_i210(struct ptp_clock_info *ptp,
        u32 tsauxc, tsim, tsauxc_mask, tsim_mask, trgttiml, trgttimh;
        unsigned long flags;
        struct timespec ts;
-       int pin;
+       int pin = -1;
        s64 ns;
 
        switch (rq->type) {
This page took 0.030933 seconds and 5 git commands to generate.