Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753968AbaFYAwu (ORCPT ); Tue, 24 Jun 2014 20:52:50 -0400 Received: from mail-ie0-f170.google.com ([209.85.223.170]:37876 "EHLO mail-ie0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753387AbaFYAwq (ORCPT ); Tue, 24 Jun 2014 20:52:46 -0400 Date: Tue, 24 Jun 2014 17:52:44 -0700 (PDT) From: David Rientjes X-X-Sender: rientjes@chino.kir.corp.google.com To: Peter Wu cc: Rickard Strandqvist , Greg Kroah-Hartman , Larry Finger , Chaoming Li , Ben Hutchings , Mark Cave-Ayland , linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCHv3 6/6] drivers/staging/rtl8821ae: replace magic number by macro In-Reply-To: <1455413.BevQxGKhmu@al> Message-ID: References: <1403561511-8117-1-git-send-email-rickard_strandqvist@spectrumdigital.se> <1455413.BevQxGKhmu@al> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 24 Jun 2014, Peter Wu wrote: > (staging drivers are handled by Greg KH, cc'ing him) > > On Tuesday 24 June 2014 00:11:51 Rickard Strandqvist wrote: > > For consistency with other drivers, replace a magic number by a macro. > > > > Signed-off-by: Rickard Strandqvist > > Reviewed-by: Peter Wu > > --- > > drivers/staging/rtl8821ae/rtl8821ae/hw.c | 2 +- > > drivers/staging/rtl8821ae/rtl8821ae/reg.h | 1 + > > 2 files changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hw.c b/drivers/staging/rtl8821ae/rtl8821ae/hw.c > > index 1b8583b..1aa1661 100644 > > --- a/drivers/staging/rtl8821ae/rtl8821ae/hw.c > > +++ b/drivers/staging/rtl8821ae/rtl8821ae/hw.c > > @@ -1623,7 +1623,7 @@ static int _rtl8821ae_set_media_status(struct ieee80211_hw *hw, > > > > rtl_write_byte(rtlpriv, (MSR), bt_msr); > > rtlpriv->cfg->ops->led_control(hw, ledaction); > > - if ((bt_msr & ~0xfc) == MSR_AP) > > + if ((bt_msr & MSR_MASK) == MSR_AP) > > rtl_write_byte(rtlpriv, REG_BCNTCFG + 1, 0x00); > > else > > rtl_write_byte(rtlpriv, REG_BCNTCFG + 1, 0x66); > > diff --git a/drivers/staging/rtl8821ae/rtl8821ae/reg.h b/drivers/staging/rtl8821ae/rtl8821ae/reg.h > > index beffb42..4cb3ca9 100644 > > --- a/drivers/staging/rtl8821ae/rtl8821ae/reg.h > > +++ b/drivers/staging/rtl8821ae/rtl8821ae/reg.h > > @@ -431,6 +431,7 @@ > > #define MSR_ADHOC 0x01 > > #define MSR_INFRA 0x02 > > #define MSR_AP 0x03 > > +#define MSR_MASK 0x03 > > > > #define RRSR_RSC_OFFSET 21 > > #define RRSR_SHORT_OFFSET 23 Doing this certainly is better than the old code, but if you're going to add an MSR_MASK I think it would be better to define it and move all of these MSR_* bits to a generalized bit/wireless/rtlwifi header since they all need it and there's no changes between them. Notice how much of this handling is already wrong where rtlwifi drivers are checking for bt_msr & 0xfc == MSR_AP which is obviously an impossible condition, and those aren't even staging drivers. A cleanup in this area would be most helpful. -- 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/