aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHannes Eder <hannes@hanneseder.net>2009-02-14 11:16:19 +0000
committerDavid S. Miller <davem@davemloft.net>2009-02-17 17:26:10 -0800
commita243f848ce0e16f7919d683fdfd4c8ea378fe25d (patch)
treebbcf15a9ad161da6bbca306db6cc85f113133968 /drivers
parentdrivers/net/cxgb3: fix sparse warning: symbol shadows an earlier one (diff)
downloadlinux-dev-a243f848ce0e16f7919d683fdfd4c8ea378fe25d.tar.xz
linux-dev-a243f848ce0e16f7919d683fdfd4c8ea378fe25d.zip
drivers/net/cxgb3: fix sparse warnings: fix signedness
Fix this sparse warning: drivers/net/cxgb3/ael1002.c:1010:60: warning: incorrect type in argument 4 (different signedness) Signed-off-by: Hannes Eder <hannes@hanneseder.net> Acked-by: Divy Le Ray <divy@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/cxgb3/ael1002.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/cxgb3/ael1002.c b/drivers/net/cxgb3/ael1002.c
index 5c3c05da4d96..e1b22490ff59 100644
--- a/drivers/net/cxgb3/ael1002.c
+++ b/drivers/net/cxgb3/ael1002.c
@@ -1005,7 +1005,8 @@ static int ael2005_reset(struct cphy *phy, int wait)
{ 0, 0, 0, 0 }
};
- int err, lasi_ctrl;
+ int err;
+ unsigned int lasi_ctrl;
err = mdio_read(phy, MDIO_DEV_PMA_PMD, LASI_CTRL, &lasi_ctrl);
if (err)