rtc: ds1307: use BIT

Use the BIT macro were possbiel.

Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>

+9 -9
+9 -9
drivers/rtc/rtc-ds1307.c
··· 634 #define RX8130_REG_ALARM_HOUR 0x08 635 #define RX8130_REG_ALARM_WEEK_OR_DAY 0x09 636 #define RX8130_REG_EXTENSION 0x0c 637 - #define RX8130_REG_EXTENSION_WADA (1 << 3) 638 #define RX8130_REG_FLAG 0x0d 639 - #define RX8130_REG_FLAG_AF (1 << 3) 640 #define RX8130_REG_CONTROL0 0x0e 641 - #define RX8130_REG_CONTROL0_AIE (1 << 3) 642 643 static irqreturn_t rx8130_irq(int irq, void *dev_id) 644 { ··· 798 #define MCP794XX_REG_ALARM0_CTRL 0x0d 799 #define MCP794XX_REG_ALARM1_BASE 0x11 800 #define MCP794XX_REG_ALARM1_CTRL 0x14 801 - # define MCP794XX_BIT_ALMX_IF (1 << 3) 802 - # define MCP794XX_BIT_ALMX_C0 (1 << 4) 803 - # define MCP794XX_BIT_ALMX_C1 (1 << 5) 804 - # define MCP794XX_BIT_ALMX_C2 (1 << 6) 805 - # define MCP794XX_BIT_ALMX_POL (1 << 7) 806 # define MCP794XX_MSK_ALMX_MATCH (MCP794XX_BIT_ALMX_C0 | \ 807 MCP794XX_BIT_ALMX_C1 | \ 808 MCP794XX_BIT_ALMX_C2) ··· 869 t->time.tm_isdst = -1; 870 871 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d " 872 - "enabled=%d polarity=%d irq=%d match=%d\n", __func__, 873 t->time.tm_sec, t->time.tm_min, t->time.tm_hour, 874 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled, 875 !!(regs[6] & MCP794XX_BIT_ALMX_POL),
··· 634 #define RX8130_REG_ALARM_HOUR 0x08 635 #define RX8130_REG_ALARM_WEEK_OR_DAY 0x09 636 #define RX8130_REG_EXTENSION 0x0c 637 + #define RX8130_REG_EXTENSION_WADA BIT(3) 638 #define RX8130_REG_FLAG 0x0d 639 + #define RX8130_REG_FLAG_AF BIT(3) 640 #define RX8130_REG_CONTROL0 0x0e 641 + #define RX8130_REG_CONTROL0_AIE BIT(3) 642 643 static irqreturn_t rx8130_irq(int irq, void *dev_id) 644 { ··· 798 #define MCP794XX_REG_ALARM0_CTRL 0x0d 799 #define MCP794XX_REG_ALARM1_BASE 0x11 800 #define MCP794XX_REG_ALARM1_CTRL 0x14 801 + # define MCP794XX_BIT_ALMX_IF BIT(3) 802 + # define MCP794XX_BIT_ALMX_C0 BIT(4) 803 + # define MCP794XX_BIT_ALMX_C1 BIT(5) 804 + # define MCP794XX_BIT_ALMX_C2 BIT(6) 805 + # define MCP794XX_BIT_ALMX_POL BIT(7) 806 # define MCP794XX_MSK_ALMX_MATCH (MCP794XX_BIT_ALMX_C0 | \ 807 MCP794XX_BIT_ALMX_C1 | \ 808 MCP794XX_BIT_ALMX_C2) ··· 869 t->time.tm_isdst = -1; 870 871 dev_dbg(dev, "%s, sec=%d min=%d hour=%d wday=%d mday=%d mon=%d " 872 + "enabled=%d polarity=%d irq=%d match=%lu\n", __func__, 873 t->time.tm_sec, t->time.tm_min, t->time.tm_hour, 874 t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled, 875 !!(regs[6] & MCP794XX_BIT_ALMX_POL),