Re: [PATCH 1/2] staging: rtl8192u: Refactoring setKey function

From: Joe Perches
Date: Tue Apr 14 2020 - 23:11:34 EST


On Tue, 2020-04-14 at 22:18 -0300, Camylla Cantanheide wrote:
> Em ter., 14 de abr. de 2020 às 09:35, Dan Carpenter <
> dan.carpenter@xxxxxxxxxx> escreveu:
[]
> > > diff --git a/drivers/staging/rtl8192u/r8192U_core.c
[]
> > > + target_content = macaddr[0] << 16 |
> > > + macaddr[0] << 24 |
> > > + (u32)us_config;

And Camylla, this statement should be

+ target_content = macaddr[0] << 16 |
+ macaddr[1] << 24 |
+ (u32)us_config;

Not a repeated [0]

> > > +
> > > + write_nic_dword(dev, WCAMI, target_content);
> > > + write_nic_dword(dev, RWCAM, target_command++);
> > > +
> > > + /* MAC */
> > > + target_content = macaddr[2] |
> > > + macaddr[3] << 8 |
> > > + macaddr[4] << 16 |
> > > + macaddr[5] << 24;