Skip to content

Commit 9fc0fd5

Browse files
rtc: mc13xxx: fix style issue
Use unsigned int instead of unsigned. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
1 parent edd6d79 commit 9fc0fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/rtc/rtc-mc13xxx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ static int mc13xxx_rtc_set_time(struct device *dev, struct rtc_time *tm)
155155
static int mc13xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
156156
{
157157
struct mc13xxx_rtc *priv = dev_get_drvdata(dev);
158-
unsigned seconds, days;
158+
unsigned int seconds, days;
159159
time64_t s1970;
160160
int enabled, pending;
161161
int ret;

0 commit comments

Comments
 (0)