Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1305365
| From | Andrew Lunn <andrew@lunn.ch> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH -next 2/2] net: tc35815: Drop unused variable |
| Date | 2016-01-09 22:40 +0100 |
| Message-ID | <qP9oS-2Xj-9@gated-at.bofh.it> (permalink) |
| References | <qP9fc-2RT-11@gated-at.bofh.it> <qP9fc-2RT-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Sat, Jan 09, 2016 at 01:21:34PM -0800, Guenter Roeck wrote:
> Commit e7f4dc3536a4 ("mdio: Move allocation of interrupts into core")
> removes some code from tc_mii_init(), but does not remove a now unused
> variable. This results in the following build warning.
>
> drivers/net/ethernet/toshiba/tc35815.c: In function 'tc_mii_init':
> drivers/net/ethernet/toshiba/tc35815.c:670:6: warning: unused variable 'i'
>
> Fixes: e7f4dc3536a4 ("mdio: Move allocation of interrupts into core")
> Cc: Andrew Lunn <andrew@lunn.ch>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Andrew Lunn <andrew@lunn.ch>
Thanks
Andrew
> ---
> drivers/net/ethernet/toshiba/tc35815.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/toshiba/tc35815.c b/drivers/net/ethernet/toshiba/tc35815.c
> index 5b5e7dcf9a99..c6c5ef979b84 100644
> --- a/drivers/net/ethernet/toshiba/tc35815.c
> +++ b/drivers/net/ethernet/toshiba/tc35815.c
> @@ -670,7 +670,6 @@ static int tc_mii_init(struct net_device *dev)
> {
> struct tc35815_local *lp = netdev_priv(dev);
> int err;
> - int i;
>
> lp->mii_bus = mdiobus_alloc();
> if (lp->mii_bus == NULL) {
> --
> 2.1.4
>
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH -next 2/2] net: tc35815: Drop unused variable Guenter Roeck <linux@roeck-us.net> - 2016-01-09 22:30 +0100 Re: [PATCH -next 2/2] net: tc35815: Drop unused variable Andrew Lunn <andrew@lunn.ch> - 2016-01-09 22:40 +0100
csiph-web