All of lore.kernel.org
 help / color / mirror / Atom feed
From: james.hogan@imgtec.com (James Hogan)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/1] clk-divider: fix is_power_of_two()
Date: Wed, 16 Jan 2013 09:27:53 +0000	[thread overview]
Message-ID: <50F67299.4010102@imgtec.com> (raw)
In-Reply-To: <20130116005639.8920.45989@quantum>

On 16/01/13 00:56, Mike Turquette wrote:
> Quoting Joe Perches (2013-01-15 10:31:05)
>> On Tue, 2013-01-15 at 10:28 +0000, James Hogan wrote:
>>> The macro is_power_of_two() in clk-divider.c was defined as !(i & ~i)
>>> which is always true. Correct it to !(i & (i - 1)).
>> []
>>> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
>> []
>>> @@ -29,8 +29,8 @@
>> []
>>> -#define div_mask(d)  ((1 << (d->width)) - 1)
>>> -#define is_power_of_two(i)   !(i & ~i)
>>> +#define div_mask(d)  ((1 << ((d)->width)) - 1)
>>> +#define is_power_of_two(i)   (!((i) & ((i) - 1)))
>>
>> Use is_power_of_2 in log2.h instead?
> 
> Both are fine suggestions.  How about I apply the below patch?

Looks good to me, thanks for taking care of the log.h change.

Cheers
James

> From 54c6c9e5f61693effbe6e4fb28ef9f2f9b3d7a23 Mon Sep 17 00:00:00 2001
> From: James Hogan <james.hogan@imgtec.com>
> Date: Tue, 15 Jan 2013 10:28:05 +0000
> Subject: [PATCH] clk-divider: fix macros
> 
> The macro is_power_of_two() in clk-divider.c was defined as !(i & ~i)
> which is always true.  Instead use is_power_of_2() from log2.h.
> 
> Also add brackets around the macro arguments in div_mask to avoid any
> future operator precedence problems.
> 
> Signed-off-by: James Hogan <james.hogan@imgtec.com>
> Cc: Joe Perches <joe@perches.com>
> Signed-off-by: Mike Turquette <mturquette@linaro.org>
> [mturquette at linaro.org: use log2.h per Joe Perches; update changelog]
> ---
>  drivers/clk/clk-divider.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
> index a9204c6..68b4021 100644
> --- a/drivers/clk/clk-divider.c
> +++ b/drivers/clk/clk-divider.c
> @@ -16,6 +16,7 @@
>  #include <linux/io.h>
>  #include <linux/err.h>
>  #include <linux/string.h>
> +#include <linux/log2.h>
>  
>  /*
>   * DOC: basic adjustable divider clock that cannot gate
> @@ -29,8 +30,7 @@
>  
>  #define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
>  
> -#define div_mask(d)	((1 << (d->width)) - 1)
> -#define is_power_of_two(i)	!(i & ~i)
> +#define div_mask(d)	((1 << ((d)->width)) - 1)
>  
>  static unsigned int _get_table_maxdiv(const struct clk_div_table *table)
>  {
> @@ -137,7 +137,7 @@ static bool _is_valid_table_div(const struct clk_div_table *table,
>  static bool _is_valid_div(struct clk_divider *divider, unsigned int div)
>  {
>  	if (divider->flags & CLK_DIVIDER_POWER_OF_TWO)
> -		return is_power_of_two(div);
> +		return is_power_of_2(div);
>  	if (divider->table)
>  		return _is_valid_table_div(divider->table, div);
>  	return true;
> 

WARNING: multiple messages have this Message-ID (diff)
From: James Hogan <james.hogan@imgtec.com>
To: Mike Turquette <mturquette@linaro.org>
Cc: Joe Perches <joe@perches.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <rnayak@ti.com>
Subject: Re: [PATCH 1/1] clk-divider: fix is_power_of_two()
Date: Wed, 16 Jan 2013 09:27:53 +0000	[thread overview]
Message-ID: <50F67299.4010102@imgtec.com> (raw)
In-Reply-To: <20130116005639.8920.45989@quantum>

On 16/01/13 00:56, Mike Turquette wrote:
> Quoting Joe Perches (2013-01-15 10:31:05)
>> On Tue, 2013-01-15 at 10:28 +0000, James Hogan wrote:
>>> The macro is_power_of_two() in clk-divider.c was defined as !(i & ~i)
>>> which is always true. Correct it to !(i & (i - 1)).
>> []
>>> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
>> []
>>> @@ -29,8 +29,8 @@
>> []
>>> -#define div_mask(d)  ((1 << (d->width)) - 1)
>>> -#define is_power_of_two(i)   !(i & ~i)
>>> +#define div_mask(d)  ((1 << ((d)->width)) - 1)
>>> +#define is_power_of_two(i)   (!((i) & ((i) - 1)))
>>
>> Use is_power_of_2 in log2.h instead?
> 
> Both are fine suggestions.  How about I apply the below patch?

Looks good to me, thanks for taking care of the log.h change.

Cheers
James

> From 54c6c9e5f61693effbe6e4fb28ef9f2f9b3d7a23 Mon Sep 17 00:00:00 2001
> From: James Hogan <james.hogan@imgtec.com>
> Date: Tue, 15 Jan 2013 10:28:05 +0000
> Subject: [PATCH] clk-divider: fix macros
> 
> The macro is_power_of_two() in clk-divider.c was defined as !(i & ~i)
> which is always true.  Instead use is_power_of_2() from log2.h.
> 
> Also add brackets around the macro arguments in div_mask to avoid any
> future operator precedence problems.
> 
> Signed-off-by: James Hogan <james.hogan@imgtec.com>
> Cc: Joe Perches <joe@perches.com>
> Signed-off-by: Mike Turquette <mturquette@linaro.org>
> [mturquette@linaro.org: use log2.h per Joe Perches; update changelog]
> ---
>  drivers/clk/clk-divider.c |    6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/clk/clk-divider.c b/drivers/clk/clk-divider.c
> index a9204c6..68b4021 100644
> --- a/drivers/clk/clk-divider.c
> +++ b/drivers/clk/clk-divider.c
> @@ -16,6 +16,7 @@
>  #include <linux/io.h>
>  #include <linux/err.h>
>  #include <linux/string.h>
> +#include <linux/log2.h>
>  
>  /*
>   * DOC: basic adjustable divider clock that cannot gate
> @@ -29,8 +30,7 @@
>  
>  #define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
>  
> -#define div_mask(d)	((1 << (d->width)) - 1)
> -#define is_power_of_two(i)	!(i & ~i)
> +#define div_mask(d)	((1 << ((d)->width)) - 1)
>  
>  static unsigned int _get_table_maxdiv(const struct clk_div_table *table)
>  {
> @@ -137,7 +137,7 @@ static bool _is_valid_table_div(const struct clk_div_table *table,
>  static bool _is_valid_div(struct clk_divider *divider, unsigned int div)
>  {
>  	if (divider->flags & CLK_DIVIDER_POWER_OF_TWO)
> -		return is_power_of_two(div);
> +		return is_power_of_2(div);
>  	if (divider->table)
>  		return _is_valid_table_div(divider->table, div);
>  	return true;
> 


  reply	other threads:[~2013-01-16  9:27 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-15 10:28 [PATCH 1/1] clk-divider: fix is_power_of_two() James Hogan
2013-01-15 10:28 ` James Hogan
2013-01-15 18:31 ` Joe Perches
2013-01-15 18:31   ` Joe Perches
2013-01-16  0:56   ` Mike Turquette
2013-01-16  0:56     ` Mike Turquette
2013-01-16  9:27     ` James Hogan [this message]
2013-01-16  9:27       ` James Hogan

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=50F67299.4010102@imgtec.com \
    --to=james.hogan@imgtec.com \
    --cc=linux-arm-kernel@lists.infradead.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.