On Thu, Mar 05, 2015 at 02:24:48PM -0500, jes.soren...@redhat.com wrote:
> From: Jes Sorensen <jes.soren...@redhat.com>
> 
> Signed-off-by: Jes Sorensen <jes.soren...@redhat.com>
> ---
>  drivers/staging/rtl8723au/hal/odm.c               | 28 
> ++++++++++++++---------
>  drivers/staging/rtl8723au/hal/odm_interface.c     | 11 ---------
>  drivers/staging/rtl8723au/include/odm_interface.h |  1 -
>  3 files changed, 17 insertions(+), 23 deletions(-)
> 
> diff --git a/drivers/staging/rtl8723au/hal/odm.c 
> b/drivers/staging/rtl8723au/hal/odm.c
> index 8493d45..32d0732 100644
> --- a/drivers/staging/rtl8723au/hal/odm.c
> +++ b/drivers/staging/rtl8723au/hal/odm.c
> @@ -379,13 +379,18 @@ void ODM_CmnInfoUpdate23a(struct dm_odm_t *pDM_Odm, u32 
> CmnInfo, u64 Value)
>  
>  }
>  
> -void odm_CommonInfoSelfInit23a(struct dm_odm_t *pDM_Odm
> -     )
> +void odm_CommonInfoSelfInit23a(struct dm_odm_t *pDM_Odm)
>  {
> -     pDM_Odm->bCckHighPower =
> -             (bool) ODM_GetBBReg(pDM_Odm, rFPGA0_XA_HSSIParameter2, BIT(9));
> +     u32 val32;
> +
> +     val32 = rtl8723au_read32(pDM_Odm->Adapter, rFPGA0_XA_HSSIParameter2);
> +     if (val32 & BIT(9))
> +             pDM_Odm->bCckHighPower = true;
> +     else
> +             pDM_Odm->bCckHighPower = false;
> +             

You added trailing whitespace :(

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

Reply via email to