projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9aa0d0b
)
rtc: xilinx: Fix calibval variable type
author
Srinivas Goud
<srinivas.goud@xilinx.com>
Tue, 8 Oct 2019 14:25:41 +0000
(16:25 +0200)
committer
Alexandre Belloni
<alexandre.belloni@bootlin.com>
Mon, 14 Oct 2019 15:49:19 +0000
(17:49 +0200)
This patch fixes the warnings reported by static code analysis.
Updated calibval variable type to unsigned type from signed.
Signed-off-by: Srinivas Goud <srinivas.goud@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link:
https://lore.kernel.org/r/20765c4c27aa92c75426b82fd2815ebef6471492.1570544738.git.michal.simek@xilinx.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-zynqmp.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-zynqmp.c
b/drivers/rtc/rtc-zynqmp.c
index
55646e0
..
5396905
100644
(file)
--- a/
drivers/rtc/rtc-zynqmp.c
+++ b/
drivers/rtc/rtc-zynqmp.c
@@
-44,7
+44,7
@@
struct xlnx_rtc_dev {
void __iomem *reg_base;
int alarm_irq;
int sec_irq;
-
int
calibval;
+
unsigned int
calibval;
};
static int xlnx_rtc_set_time(struct device *dev, struct rtc_time *tm)