igb: Fix sparse warning in igb_ptp_rx_pktstamp
authorAlexander Duyck <alexander.h.duyck@intel.com>
Tue, 23 Oct 2012 00:01:04 +0000 (00:01 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 30 Oct 2012 06:49:34 +0000 (23:49 -0700)
This change fixes a sparse warning triggered by us casting the timestamp in
the packet as a u64 instead of as a __le64.  This change corrects that in
order to resolve the sparse warning.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.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 a7db4cec7a1c850bb6f1822941671c17416c72cb..aa10f69f9f1614330042c86e0b6f2b150296fca3 100644 (file)
@@ -455,7 +455,7 @@ void igb_ptp_rx_pktstamp(struct igb_q_vector *q_vector,
                         unsigned char *va,
                         struct sk_buff *skb)
 {
-       u64 *regval = (u64 *)va;
+       __le64 *regval = (__le64 *)va;
 
        /*
         * The timestamp is recorded in little endian format.
This page took 0.040974 seconds and 5 git commands to generate.