Search Linux Wireless

Re: [PATCH 1/2] rt2x00pci: small 3290 changes cleanup

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, Jul 9, 2012 at 2:41 PM, Stanislaw Gruszka <sgruszka@xxxxxxxxxx> wrote:
> Fix indention and remove unnecessary brackets and compares.
>
> Signed-off-by: Stanislaw Gruszka <sgruszka@xxxxxxxxxx>

Thanks for cleaning this up Stanislaw!

Acked-by: Helmut Schaa <helmut.schaa@xxxxxxxxxxxxxx>

> ---
>  drivers/net/wireless/rt2x00/rt2800pci.c |   11 +++++------
>  1 files changed, 5 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c
> index dd43612..bf0e71e 100644
> --- a/drivers/net/wireless/rt2x00/rt2800pci.c
> +++ b/drivers/net/wireless/rt2x00/rt2800pci.c
> @@ -986,7 +986,7 @@ static int rt2800_enable_wlan_rt3290(struct rt2x00_dev *rt2x00dev)
>         int i, count;
>
>         rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
> -       if ((rt2x00_get_field32(reg, WLAN_EN) == 1))
> +       if (rt2x00_get_field32(reg, WLAN_EN))
>                 return 0;
>
>         rt2x00_set_field32(&reg, WLAN_GPIO_OUT_OE_BIT_ALL, 0xff);
> @@ -1004,9 +1004,9 @@ static int rt2800_enable_wlan_rt3290(struct rt2x00_dev *rt2x00dev)
>                  */
>                 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
>                         rt2800_register_read(rt2x00dev, CMB_CTRL, &reg);
> -                       if ((rt2x00_get_field32(reg, PLL_LD) == 1) &&
> -                               (rt2x00_get_field32(reg, XTAL_RDY) == 1))
> -                                       break;
> +                       if (rt2x00_get_field32(reg, PLL_LD) &&
> +                           rt2x00_get_field32(reg, XTAL_RDY))
> +                               break;
>                         udelay(REGISTER_BUSY_DELAY);
>                 }
>
> @@ -1022,9 +1022,8 @@ static int rt2800_enable_wlan_rt3290(struct rt2x00_dev *rt2x00dev)
>                         rt2800_register_write(rt2x00dev, 0x58, 0x618);
>                         udelay(REGISTER_BUSY_DELAY);
>                         count++;
> -               } else {
> +               } else
>                         count = 0;
> -               }
>
>                 rt2800_register_read(rt2x00dev, WLAN_FUN_CTRL, &reg);
>                 rt2x00_set_field32(&reg, PCIE_APP0_CLK_REQ, 0);
> --
> 1.7.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Host AP]     [ATH6KL]     [Linux Wireless Personal Area Network]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Linux Kernel]     [IDE]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite Hiking]     [MIPS Linux]     [ARM Linux]     [Linux RAID]

  Powered by Linux