summaryrefslogtreecommitdiffstats
path: root/drivers/net/ixgbe/ixgbe_mbx.c
diff options
context:
space:
mode:
authorAndy Gospodarek2011-03-08 23:26:00 +0100
committerDavid S. Miller2011-03-08 23:26:00 +0100
commit5217e8794619ac0a29151f29be20c7d6188303ba (patch)
treeef64704b304c3589c1aa9596588a840d744e133b /drivers/net/ixgbe/ixgbe_mbx.c
parentdsa/mv88e6060: support nonzero mii base address (diff)
downloadkernel-qcow2-linux-5217e8794619ac0a29151f29be20c7d6188303ba.tar.gz
kernel-qcow2-linux-5217e8794619ac0a29151f29be20c7d6188303ba.tar.xz
kernel-qcow2-linux-5217e8794619ac0a29151f29be20c7d6188303ba.zip
ixgbe: fix compile failure in ixgbe_init_mbx_params_pf
This commit: commit d7c8a29fc8bd20ba45ec2f52577ed04a988a9500 Author: Emil Tantilov <emil.s.tantilov@intel.com> Date: Thu Mar 3 09:25:02 2011 +0000 ixgbe: improve logic in ixgbe_init_mbx_params_pf incorrectly added a line that accessed mbx->udelay. I'm sure the intent was mbx->usec_delay. This patch fixes the compilation error. Signed-off-by: Andy Gospodarek <andy@greyhouse.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_mbx.c')
-rw-r--r--drivers/net/ixgbe/ixgbe_mbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_mbx.c b/drivers/net/ixgbe/ixgbe_mbx.c
index 3cf8aec50fcd..c7ed82eb2539 100644
--- a/drivers/net/ixgbe/ixgbe_mbx.c
+++ b/drivers/net/ixgbe/ixgbe_mbx.c
@@ -453,7 +453,7 @@ void ixgbe_init_mbx_params_pf(struct ixgbe_hw *hw)
return;
mbx->timeout = 0;
- mbx->udelay = 0;
+ mbx->usec_delay = 0;
mbx->stats.msgs_tx = 0;
mbx->stats.msgs_rx = 0;