Skip to content

Commit eb4fd19

Browse files
rtc: ds1307: use BIT
Use the BIT macro were possbiel. Signed-off-by: Alexandre Belloni <[email protected]>
1 parent 57ec2d9 commit eb4fd19

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

drivers/rtc/rtc-ds1307.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -634,11 +634,11 @@ static const struct rtc_class_ops ds13xx_rtc_ops = {
634634
#define RX8130_REG_ALARM_HOUR 0x08
635635
#define RX8130_REG_ALARM_WEEK_OR_DAY 0x09
636636
#define RX8130_REG_EXTENSION 0x0c
637-
#define RX8130_REG_EXTENSION_WADA (1 << 3)
637+
#define RX8130_REG_EXTENSION_WADA BIT(3)
638638
#define RX8130_REG_FLAG 0x0d
639-
#define RX8130_REG_FLAG_AF (1 << 3)
639+
#define RX8130_REG_FLAG_AF BIT(3)
640640
#define RX8130_REG_CONTROL0 0x0e
641-
#define RX8130_REG_CONTROL0_AIE (1 << 3)
641+
#define RX8130_REG_CONTROL0_AIE BIT(3)
642642

643643
static irqreturn_t rx8130_irq(int irq, void *dev_id)
644644
{
@@ -798,11 +798,11 @@ static int rx8130_alarm_irq_enable(struct device *dev, unsigned int enabled)
798798
#define MCP794XX_REG_ALARM0_CTRL 0x0d
799799
#define MCP794XX_REG_ALARM1_BASE 0x11
800800
#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)
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)
806806
# define MCP794XX_MSK_ALMX_MATCH (MCP794XX_BIT_ALMX_C0 | \
807807
MCP794XX_BIT_ALMX_C1 | \
808808
MCP794XX_BIT_ALMX_C2)
@@ -869,7 +869,7 @@ static int mcp794xx_read_alarm(struct device *dev, struct rtc_wkalrm *t)
869869
t->time.tm_isdst = -1;
870870

871871
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__,
872+
"enabled=%d polarity=%d irq=%d match=%lu\n", __func__,
873873
t->time.tm_sec, t->time.tm_min, t->time.tm_hour,
874874
t->time.tm_wday, t->time.tm_mday, t->time.tm_mon, t->enabled,
875875
!!(regs[6] & MCP794XX_BIT_ALMX_POL),

0 commit comments

Comments
 (0)