All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiri Slaby <jirislaby@gmail.com>
To: kernel-janitors@vger.kernel.org
Subject: Re: [patch] staging: vt6655: rewrite CARDvUpdateBasicTopRate()
Date: Sat, 13 Feb 2010 09:36:37 +0000	[thread overview]
Message-ID: <4B7672A5.80308@gmail.com> (raw)
In-Reply-To: <20100213080317.GJ14210@bicker>

On 02/13/2010 09:03 AM, Dan Carpenter wrote:
> Originally, I wrote a patch to add some missing curly braces, but Walter
> Harms suggested that I should just rewrite the whole function to use the
> kernel version of ffs().
> 
> It is odd to subtract one from the result of ffs() but that was present
> in the original code as well (once you add the missing curly braces).
> 
> Signed-off-by: Dan Carpenter <error27@gmail.com>
> ---
> This patch replaces my previous patch.  I don't have the hardware to 
> actually test this change.  :/
> 
> diff --git a/drivers/staging/vt6655/card.c b/drivers/staging/vt6655/card.c
> index db78614..3a1f2be 100644
> --- a/drivers/staging/vt6655/card.c
> +++ b/drivers/staging/vt6655/card.c
> @@ -2780,28 +2780,32 @@ void vUpdateIFS (PVOID pDeviceHandler)
>      VNSvOutPortB(pDevice->PortOffset + MAC_REG_CWMAXMIN0, (BYTE)byMaxMin);
>  }
>  
> +static int top_OFDM_basic_rate(u16 basic_rate)
> +{
> +	int rate;
> +
> +	rate = ffs(basic_rate) - 1;
> +	if (rate > RATE_54M || rate < RATE_6M)
> +		return RATE_24M;
> +	return rate;
> +}
> +
> +static int top_CCK(u16 basic_rate)
> +{
> +	int rate;
> +
> +	rate = ffs(basic_rate) - 1;
> +	if (rate > RATE_11M || rate < 0)
> +		return RATE_1M;
> +	return rate;
> +}
> +
>  void CARDvUpdateBasicTopRate (PVOID pDeviceHandler)
>  {
> -    PSDevice pDevice = (PSDevice) pDeviceHandler;
> -    BYTE byTopOFDM = RATE_24M, byTopCCK = RATE_1M;
> -    BYTE ii;
> -
> -     //Determines the highest basic rate.
> -     for (ii = RATE_54M; ii >= RATE_6M; ii --) {
> -         if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) )
> -             byTopOFDM = ii;
> -             break;
> -     }
> -     pDevice->byTopOFDMBasicRate = byTopOFDM;
> -
> -     for (ii = RATE_11M;; ii --) {
> -         if ( (pDevice->wBasicRate) & ((WORD)(1<<ii)) )
> -             byTopCCK = ii;
> -             break;
> -         if (ii = RATE_1M)
> -            break;
> -     }

Hmm, but this is different from ffs in that it starts from higher bits
and go down and hence finds the highest possible rate (there may be more
basic rates). Your patch selects the lowest possible one.

You cannot use ffs and fls here.

-- 
js

  reply	other threads:[~2010-02-13  9:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-13  8:03 [patch] staging: vt6655: rewrite CARDvUpdateBasicTopRate() Dan Carpenter
2010-02-13  9:36 ` Jiri Slaby [this message]
2010-02-13  9:44 ` Jiri Slaby
2010-02-13 10:06 ` Dan Carpenter

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=4B7672A5.80308@gmail.com \
    --to=jirislaby@gmail.com \
    --cc=kernel-janitors@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 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.