Skip to content

Commit

Permalink
rtc: mc13xxx: fix style issue
Browse files Browse the repository at this point in the history
Use unsigned int instead of unsigned.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
  • Loading branch information
Alexandre Belloni committed Apr 16, 2019
1 parent edd6d79 commit 9fc0fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/rtc/rtc-mc13xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ static int mc13xxx_rtc_set_time(struct device *dev, struct rtc_time *tm)
static int mc13xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
{
struct mc13xxx_rtc *priv = dev_get_drvdata(dev);
unsigned seconds, days;
unsigned int seconds, days;
time64_t s1970;
int enabled, pending;
int ret;
Expand Down

0 comments on commit 9fc0fd5

Please sign in to comment.