[Uclinux-h8-devel] [PATCH 3/7] clocksource/timer_of: use BIT() macro

Back to archive index
Claudiu Beznea claud****@micro*****
2019年 9月 10日 (火) 22:47:12 JST


Use BIT() macro for timer_of flags.

Signed-off-by: Claudiu Beznea <claud****@micro*****>
---
 drivers/clocksource/timer-of.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/clocksource/timer-of.h b/drivers/clocksource/timer-of.h
index ee467bb16ca3..df861ea2ec42 100644
--- a/drivers/clocksource/timer-of.h
+++ b/drivers/clocksource/timer-of.h
@@ -4,9 +4,9 @@
 
 #include <linux/clockchips.h>
 
-#define TIMER_OF_BASE	0x1
-#define TIMER_OF_CLOCK	0x2
-#define TIMER_OF_IRQ	0x4
+#define TIMER_OF_BASE		BIT(0)
+#define TIMER_OF_CLOCK		BIT(1)
+#define TIMER_OF_IRQ		BIT(2)
 
 struct of_timer_irq {
 	int irq;
-- 
2.7.4



Uclinux-h8-devel メーリングリストの案内
Back to archive index