Dan Carpenter <dan.carpen...@oracle.com> writes:
> On Wed, May 21, 2014 at 09:38:36AM +0200, jes.soren...@redhat.com wrote:
>> @@ -6243,7 +6241,7 @@ int setkey_hdl23a(struct rtw_adapter *padapter, const 
>> u8 *pbuf)
>>              pmlmeinfo->key_index = pparm->keyid;
>>  
>>      /* write cam */
>> -    ctrl = BIT(15) | ((pparm->algorithm) << 2) | pparm->keyid;
>> +    ctrl = BIT(15) | (pparm->algorithm) << 2 | pparm->keyid;
>                          ^^^^^^^^^^^^^^^^^^^^^^^
> Heh.  It doesn't matter either way, but if I had to choose I would
> probably have kept the outer parens.  :P
>
> Anyway, I'm done reviewing this patch set.  Looks good.

I suspect that was my intention and I picked the wrong right side
bracket by mistake :( There is some crazy obsession with excessive
paranthesis abuse in that driver :(

Cheers,
Jes
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to