From: Dan Williams <dcbw@redhat.com>
To: Michael Buesch <mb@bu3sch.de>
Cc: Harvey Harrison <harvey.harrison@gmail.com>,
linux-wireless <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH] b43: pull out helpers for writing noise table
Date: Sat, 08 Mar 2008 14:43:07 -0500 [thread overview]
Message-ID: <1205005387.3335.2.camel@localhost.localdomain> (raw)
In-Reply-To: <200803081448.11670.mb@bu3sch.de>
On Sat, 2008-03-08 at 14:48 +0100, Michael Buesch wrote:
> Uhm, well. Why? Any problems with that code?
It's a nice cleanup. Nothing wrong with getting rid of the same code
duplicated 6 times.
> On Saturday 08 March 2008 11:40:38 Harvey Harrison wrote:
> > Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
> > ---
> > drivers/net/wireless/b43/wa.c | 44 +++++++++++++++++++++-------------------
> > 1 files changed, 23 insertions(+), 21 deletions(-)
> >
> > diff --git a/drivers/net/wireless/b43/wa.c b/drivers/net/wireless/b43/wa.c
> > index e632125..eff35ad 100644
> > --- a/drivers/net/wireless/b43/wa.c
> > +++ b/drivers/net/wireless/b43/wa.c
> > @@ -204,6 +204,22 @@ static void b43_wa_rt(struct b43_wldev *dev) /* Rotor table */
> > b43_ofdmtab_write32(dev, B43_OFDMTAB_ROTOR, i, b43_tab_rotor[i]);
> > }
> >
> > +static void b43_write_null_nst(struct b43_wldev *dev)
> > +{
> > + int i;
> > +
> > + for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > + b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE, i, 0);
> > +}
> > +
> > +static void b43_write_nst(struct b43_wldev *dev, const u16 *nst)
> > +{
> > + int i;
> > +
> > + for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > + b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE, i, nst[i]);
> > +}
> > +
> > static void b43_wa_nst(struct b43_wldev *dev) /* Noise scale table */
> > {
> > struct b43_phy *phy = &dev->phy;
> > @@ -211,35 +227,21 @@ static void b43_wa_nst(struct b43_wldev *dev) /* Noise scale table */
> >
> > if (phy->type == B43_PHYTYPE_A) {
> > if (phy->rev <= 1)
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, 0);
> > + b43_write_null_nst(dev);
> > else if (phy->rev == 2)
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescalea2[i]);
> > + b43_write_nst(dev, b43_tab_noisescalea2);
> > else if (phy->rev == 3)
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescalea3[i]);
> > + b43_write_nst(dev, b43_tab_noisescalea3);
> > else
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescaleg3[i]);
> > + b43_write_nst(dev, b43_tab_noisescaleg3);
> > } else {
> > if (phy->rev >= 6) {
> > if (b43_phy_read(dev, B43_PHY_ENCORE) & B43_PHY_ENCORE_EN)
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescaleg3[i]);
> > + b43_write_nst(dev, b43_tab_noisescaleg3);
> > else
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescaleg2[i]);
> > + b43_write_nst(dev, b43_tab_noisescaleg2);
> > } else {
> > - for (i = 0; i < B43_TAB_NOISESCALE_SIZE; i++)
> > - b43_ofdmtab_write16(dev, B43_OFDMTAB_NOISESCALE,
> > - i, b43_tab_noisescaleg1[i]);
> > + b43_write_nst(dev, b43_tab_noisescaleg1);
> > }
> > }
> > }
>
>
>
next prev parent reply other threads:[~2008-03-08 19:46 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-08 10:40 [PATCH] b43: pull out helpers for writing noise table Harvey Harrison
2008-03-08 13:48 ` Michael Buesch
2008-03-08 19:43 ` Dan Williams [this message]
2008-03-08 19:54 ` Michael Buesch
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=1205005387.3335.2.camel@localhost.localdomain \
--to=dcbw@redhat.com \
--cc=harvey.harrison@gmail.com \
--cc=linux-wireless@vger.kernel.org \
--cc=mb@bu3sch.de \
/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