From: "John W. Linville" <linville@tuxdriver.com>
To: Joerg Albert <jal2@gmx.de>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Christian Lamparter <chunkeey@googlemail.com>,
linux-wireless@vger.kernel.org,
"David S. Miller" <davem@davemloft.net>
Subject: Re: [PATCH] ar9170: implement frequency calibration for one-stage/openfw
Date: Mon, 28 Sep 2009 14:41:11 -0400 [thread overview]
Message-ID: <20090928184111.GB4737@tuxdriver.com> (raw)
In-Reply-To: <4AB4CCD0.5080003@gmx.de>
On Sat, Sep 19, 2009 at 02:21:36PM +0200, Joerg Albert wrote:
> On 09/19/2009 02:02 AM, Andrew Morton wrote:
> > On Thu, 3 Sep 2009 20:25:31 +0200
> > Christian Lamparter <chunkeey@googlemail.com> wrote:
> >
> >> This patch ports some code from the vendor driver, which is
> >> supposed to upload the right calibration values for the
> >> chosen frequency.
> >>
> >> In theory, this should give a better range and throughput
> >> for all users with the open, or one-stage firmware.
> >>
> >> ...
> >>
> >> + for (i = 0; i < 76; i++) {
> >> + u32 phy_data;
> >> + u8 tmp;
> >> +
> >> + if (i < 25) {
> >> + tmp = ar9170_interpolate_val(i, &pwrs[0][0],
> >> + &vpds[0][0]);
> >> + } else {
> >> + tmp = ar9170_interpolate_val(i - 12,
> >> + &pwrs[1][0],
> >> + &vpds[1][0]);
> >> + }
> >> +
> >> + phy_data |= tmp << ((i & 3) << 3);
> >
> > Clearly buggy and the compiler warns. The value of phy_data is unknown
> > here.
> >
> > How did this get all the way into mainline?
>
> Strangely it compiles without any warning for me with the latest linux-wireless:
That is strange -- no warning here (F-11) either...
Christian, care to propose a patch? Or maybe just something like this?
diff --git a/drivers/net/wireless/ath/ar9170/phy.c b/drivers/net/wireless/ath/ar9170/phy.c
index b3e5cf3..49c10cb 100644
--- a/drivers/net/wireless/ath/ar9170/phy.c
+++ b/drivers/net/wireless/ath/ar9170/phy.c
@@ -1220,7 +1220,7 @@ static int ar9170_set_freq_cal_data(struct ar9170 *ar,
&vpds[1][0]);
}
- phy_data |= tmp << ((i & 3) << 3);
+ phy_data = tmp << ((i & 3) << 3);
if ((i & 3) == 3) {
ar9170_regwrite(0x1c6280 + chain * 0x1000 +
(i & ~3), phy_data);
John
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
next prev parent reply other threads:[~2009-09-28 18:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-03 18:25 [PATCH] ar9170: implement frequency calibration for one-stage/openfw Christian Lamparter
2009-09-19 0:02 ` Andrew Morton
2009-09-19 12:21 ` Joerg Albert
2009-09-28 18:41 ` John W. Linville [this message]
2009-09-28 19:45 ` Christian Lamparter
2009-09-28 19:50 ` John W. Linville
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=20090928184111.GB4737@tuxdriver.com \
--to=linville@tuxdriver.com \
--cc=akpm@linux-foundation.org \
--cc=chunkeey@googlemail.com \
--cc=davem@davemloft.net \
--cc=jal2@gmx.de \
--cc=linux-wireless@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).