| Submitter | Hannes Eder |
|---|---|
| Date | Feb. 14, 2009, 9:14 p.m. |
| Message ID | <20090214211423.23489.10245.stgit@vmbox.hanneseder.net> |
| Download | mbox | patch |
| Permalink | /patch/23156/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Hannes Eder <hannes@hanneseder.net> Date: Sat, 14 Feb 2009 22:14:31 +0100 > Impact: Remove redundant inner scope variable. > > Fix this sparse warning: > drivers/net/s2io.c:7223:21: warning: symbol 'i' shadows an earlier one > drivers/net/s2io.c:7184:13: originally declared here > > Signed-off-by: Hannes Eder <hannes@hanneseder.net> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Hannes Eder <hannes@hanneseder.net> Date: Sat, 14 Feb 2009 22:14:31 +0100 > Impact: Remove redundant inner scope variable. > > Fix this sparse warning: > drivers/net/s2io.c:7223:21: warning: symbol 'i' shadows an earlier one > drivers/net/s2io.c:7184:13: originally declared here > > Signed-off-by: Hannes Eder <hannes@hanneseder.net> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index 5cd2291..16868b7 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c @@ -7220,7 +7220,6 @@ static int s2io_card_up(struct s2io_nic * sp) /* Initialise napi */ if (config->napi) { - int i; if (config->intr_type == MSI_X) { for (i = 0; i < sp->config.rx_ring_num; i++) napi_enable(&sp->mac_control.rings[i].napi);
Impact: Remove redundant inner scope variable. Fix this sparse warning: drivers/net/s2io.c:7223:21: warning: symbol 'i' shadows an earlier one drivers/net/s2io.c:7184:13: originally declared here Signed-off-by: Hannes Eder <hannes@hanneseder.net> --- drivers/net/s2io.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html