From: Felix Fietkau <nbd@openwrt.org>
To: Senthil Balasubramanian <senthilkumar@atheros.com>
Cc: linville@tuxdriver.com, linux-wireless@vger.kernel.org
Subject: Re: [PATCH 1/2] ath9k_hw: Fix incorrect macversion and macrev checks
Date: Mon, 20 Dec 2010 19:19:56 +0100 [thread overview]
Message-ID: <4D0F9E4C.7090208@openwrt.org> (raw)
In-Reply-To: <1292866656-2253-1-git-send-email-senthilkumar@atheros.com>
On 2010-12-20 6:37 PM, Senthil Balasubramanian wrote:
> There are few places where we are checking for macversion and revsions
> before RTC is powered ON. However we are reading the macversion and
> revisions only after RTC is powered ON and so both macversion and
> revisions are actully zero and this leads to incorrect srev checks.
>
> fix this by reading the macversion and revisisons even before we start
> using them. There is no reason why should we delay reading this info
> until RTC is powered on as this is just a register information.
>
> Cc: Stable Kernel <stable@kernel.org>
> Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
> ---
> drivers/net/wireless/ath/ath9k/hw.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
> index ddda76f..c9b7f1e 100644
> --- a/drivers/net/wireless/ath/ath9k/hw.c
> +++ b/drivers/net/wireless/ath/ath9k/hw.c
> @@ -1078,13 +1078,13 @@ static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
> return false;
> }
>
> - ath9k_hw_read_revisions(ah);
> -
> return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
> }
>
> static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
> {
> + ath9k_hw_read_revisions(ah);
> +
> if (AR_SREV_9300_20_OR_LATER(ah)) {
> REG_WRITE(ah, AR_WA, ah->WARegVal);
> udelay(10);
Why re-read the revision on every reset?
- Felix
next prev parent reply other threads:[~2010-12-20 18:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-20 17:37 [PATCH 1/2] ath9k_hw: Fix incorrect macversion and macrev checks Senthil Balasubramanian
2010-12-20 17:37 ` [PATCH 2/2] ath9k_hw: read and backup AR_WA register value even before chip reset on Senthil Balasubramanian
2010-12-20 18:19 ` Felix Fietkau [this message]
2010-12-21 13:36 ` [PATCH 1/2] ath9k_hw: Fix incorrect macversion and macrev checks Senthil Balasubramanian
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D0F9E4C.7090208@openwrt.org \
--to=nbd@openwrt.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=senthilkumar@atheros.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.