diff options
| author | Claudiu Beznea <[email protected]> | 2020-01-06 09:58:08 +0000 |
|---|---|---|
| committer | Daniel Lezcano <[email protected]> | 2020-01-16 18:09:02 +0000 |
| commit | b9c60a741f06eda56d12c7216accb317b74266b4 (patch) | |
| tree | c36efb71577cdcf97f88ea716cdcbaddc17f05a4 /drivers/clocksource/timer-microchip-pit64b.c | |
| parent | clocksource/drivers/exynos_mct: Rename Exynos to lowercase (diff) | |
| download | kernel-b9c60a741f06eda56d12c7216accb317b74266b4.tar.gz kernel-b9c60a741f06eda56d12c7216accb317b74266b4.zip | |
clocksource/drivers/timer-microchip-pit64b: Fix sparse warning
Fix sparse warning:
"warning: Using plain integer as NULL pointer"
Reported-by: kbuild test robot <[email protected]>
Signed-off-by: Claudiu Beznea <[email protected]>
Signed-off-by: Daniel Lezcano <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'drivers/clocksource/timer-microchip-pit64b.c')
| -rw-r--r-- | drivers/clocksource/timer-microchip-pit64b.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/clocksource/timer-microchip-pit64b.c b/drivers/clocksource/timer-microchip-pit64b.c index 27a389a7e078..bd63d3484838 100644 --- a/drivers/clocksource/timer-microchip-pit64b.c +++ b/drivers/clocksource/timer-microchip-pit64b.c @@ -248,6 +248,8 @@ static int __init mchp_pit64b_init_mode(struct mchp_pit64b_timer *timer, if (!pclk_rate) return -EINVAL; + timer->mode = 0; + /* Try using GCLK. */ gclk_round = clk_round_rate(timer->gclk, max_rate); if (gclk_round < 0) @@ -360,7 +362,7 @@ static int __init mchp_pit64b_dt_init_timer(struct device_node *node, bool clkevt) { u32 freq = clkevt ? MCHP_PIT64B_DEF_CE_FREQ : MCHP_PIT64B_DEF_CS_FREQ; - struct mchp_pit64b_timer timer = { 0 }; + struct mchp_pit64b_timer timer; unsigned long clk_rate; u32 irq = 0; int ret; |
