clocksource/drivers/fsl_ftm_timer: Fix error return checking

The error checks on freq for a negative error return always fails because
freq is unsigned and can never be negative. Fix this by making freq a
signed long.

Detected with Coccinelle:
drivers/clocksource/fsl_ftm_timer.c:287:5-9: WARNING: Unsigned expression
compared with zero: freq <= 0
drivers/clocksource/fsl_ftm_timer.c:291:5-9: WARNING: Unsigned expression
compared with zero: freq <= 0

Fixes: 2529c3a33079 ("clocksource: Add Freescale FlexTimer Module (FTM) timer support")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: kernel-janitors@vger.kernel.org
Link: https://lkml.kernel.org/r/20180226113614.3092-1-colin.king@canonical.com

authored by Colin Ian King and committed by Thomas Gleixner f287eb90 4a3928c6

+1 -1
+1 -1
drivers/clocksource/fsl_ftm_timer.c
··· 281 281 282 282 static unsigned long __init ftm_clk_init(struct device_node *np) 283 283 { 284 - unsigned long freq; 284 + long freq; 285 285 286 286 freq = __ftm_clk_init(np, "ftm-evt-counter-en", "ftm-evt"); 287 287 if (freq <= 0)