* [KJ] Re: [PATCH]is_power_of_2-rtc/rtc-s3c.c
@ 2007-06-15 17:34 Ben Dooks
0 siblings, 0 replies; only message in thread
From: Ben Dooks @ 2007-06-15 17:34 UTC (permalink / raw)
To: kernel-janitors
On Tue, Jun 12, 2007 at 10:54:28AM +0530, vignesh babu wrote:
>
>
> Replacing (n & (n-1)) in the context of power of 2 checks
> with is_power_of_2
>
> Signed-off-by: vignesh babu <vignesh.babu@wipro.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
> ---
> diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
> index 54b6130..e20bd6f 100644
> --- a/drivers/rtc/rtc-s3c.c
> +++ b/drivers/rtc/rtc-s3c.c
> @@ -20,6 +20,7 @@
> #include <linux/rtc.h>
> #include <linux/bcd.h>
> #include <linux/clk.h>
> +#include <linux/log2.h>
>
> #include <asm/hardware.h>
> #include <asm/uaccess.h>
> @@ -311,7 +312,7 @@ static int s3c_rtc_ioctl(struct device *dev,
> case RTC_IRQP_SET:
> /* check for power of 2 */
>
> - if ((arg & (arg-1)) != 0 || arg < 1) {
> + if (!is_power_of_2(arg)) {
> ret = -EINVAL;
> goto exit;
> }
>
> --
> Vignesh Babu BM
> _____________________________________________________________
> "Why is it that every time I'm with you, makes me believe in magic?"
>
>
>
> The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.
>
> WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.
>
> www.wipro.com
--
--
Ben
Q: What's a light-year?
A: One-third less calories than a regular year.
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-15 17:34 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-15 17:34 [KJ] Re: [PATCH]is_power_of_2-rtc/rtc-s3c.c Ben Dooks
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.