浏览代码

rtc-s3c: Use is_power_of_2() macro for simplicity.

Use is_power_of_2() macro for simplicity.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Alessandro Zummo <a.zummo@towertech.it>
Cc: David Brownell <david-b@pacbell.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Robert P. J. Day 17 年之前
父节点
当前提交
9974b6ea7b
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      drivers/rtc/rtc-s3c.c

+ 2 - 3
drivers/rtc/rtc-s3c.c

@@ -20,6 +20,7 @@
 #include <linux/rtc.h>
 #include <linux/rtc.h>
 #include <linux/bcd.h>
 #include <linux/bcd.h>
 #include <linux/clk.h>
 #include <linux/clk.h>
+#include <linux/log2.h>
 
 
 #include <asm/hardware.h>
 #include <asm/hardware.h>
 #include <asm/uaccess.h>
 #include <asm/uaccess.h>
@@ -309,9 +310,7 @@ static int s3c_rtc_ioctl(struct device *dev,
 		break;
 		break;
 
 
 	case RTC_IRQP_SET:
 	case RTC_IRQP_SET:
-		/* check for power of 2 */
-
-		if ((arg & (arg-1)) != 0 || arg < 1) {
+		if (!is_power_of_2(arg)) {
 			ret = -EINVAL;
 			ret = -EINVAL;
 			goto exit;
 			goto exit;
 		}
 		}