diff options
| author | Bruce Allan <bruce.w.allan@intel.com> | 2013-02-20 04:05:45 +0000 | 
|---|---|---|
| committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2013-03-08 00:23:56 -0800 | 
| commit | 362e20caee2ca2184c887484fca8182289f7e0a2 (patch) | |
| tree | f7d21114e2aa52387825e6c21b18fafb4c1cbe10 /drivers/net/ethernet/intel/e1000e/phy.c | |
| parent | f0ff439872e1eab81940d736a5683e93b44865e3 (diff) | |
| download | olio-linux-3.10-362e20caee2ca2184c887484fca8182289f7e0a2.tar.xz olio-linux-3.10-362e20caee2ca2184c887484fca8182289f7e0a2.zip  | |
e1000e: cleanup SPACING checkpatch errors and warnings
ERROR:SPACING: spaces prohibited around that ':' (ctx:WxV)
ERROR:SPACING: need consistent spacing around '-' (ctx:WxV)
ERROR:SPACING: space required after that ',' (ctx:VxV)
ERROR:SPACING: spaces required around that '=' (ctx:VxV)
WARNING:SPACING: missing space after enum definition
and some similar spacing issues not reported by checkpatch.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/e1000e/phy.c')
| -rw-r--r-- | drivers/net/ethernet/intel/e1000e/phy.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/e1000e/phy.c b/drivers/net/ethernet/intel/e1000e/phy.c index c39a65e293f..e46b65f1189 100644 --- a/drivers/net/ethernet/intel/e1000e/phy.c +++ b/drivers/net/ethernet/intel/e1000e/phy.c @@ -1756,7 +1756,7 @@ s32 e1000e_phy_has_link_generic(struct e1000_hw *hw, u32 iterations,  		if (phy_status & BMSR_LSTATUS)  			break;  		if (usec_interval >= 1000) -			mdelay(usec_interval/1000); +			mdelay(usec_interval / 1000);  		else  			udelay(usec_interval);  	}  |