Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1265188
| From | Andy Shevchenko <andy.shevchenko@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 10/12] staging: rtl8188eu: reg_macid variable removed in hw_var_set_macaddr |
| Date | 2015-11-08 21:20 +0100 |
| Message-ID | <qsEBr-4O9-7@gated-at.bofh.it> (permalink) |
| References | <qss7g-57a-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Sun, Nov 8, 2015 at 8:51 AM, Ivan Safonov <insafonov@gmail.com> wrote:
> The reg_macid variable used only once. Also idx renamed to i and Adapter to adapter.
>
> Signed-off-by: Ivan Safonov <insafonov@gmail.com>
> ---
> drivers/staging/rtl8188eu/hal/usb_halinit.c | 11 ++++-------
> 1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/staging/rtl8188eu/hal/usb_halinit.c b/drivers/staging/rtl8188eu/hal/usb_halinit.c
> index 5789e1e..e1d6632 100644
> --- a/drivers/staging/rtl8188eu/hal/usb_halinit.c
> +++ b/drivers/staging/rtl8188eu/hal/usb_halinit.c
> @@ -1253,15 +1253,12 @@ static void hw_var_set_opmode(struct adapter *Adapter, u8 variable, u8 *val)
> }
> }
>
> -static void hw_var_set_macaddr(struct adapter *Adapter, u8 variable, u8 *val)
> +static void hw_var_set_macaddr(struct adapter *adapter, u8 variable, u8 *val)
> {
> - u8 idx = 0;
> - u32 reg_macid;
> -
> - reg_macid = REG_MACID;
> + int i;
>
> - for (idx = 0; idx < 6; idx++)
> - usb_write8(Adapter, (reg_macid+idx), val[idx]);
> + for (i = 0; i < 6; i++)
ETH_ALEN?
> + usb_write8(adapter, REG_MACID + i, val[i]);
> }
>
> static void hw_var_set_bssid(struct adapter *Adapter, u8 variable, u8 *val)
> --
> 2.4.10
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
With Best Regards,
Andy Shevchenko
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH 10/12] staging: rtl8188eu: reg_macid variable removed in hw_var_set_macaddr Ivan Safonov <insafonov@gmail.com> - 2015-11-08 08:00 +0100 Re: [PATCH 10/12] staging: rtl8188eu: reg_macid variable removed in hw_var_set_macaddr Andy Shevchenko <andy.shevchenko@gmail.com> - 2015-11-08 21:20 +0100
csiph-web