Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sh: clkfwk: fix up compiler warnings.

CC drivers/sh/clk/core.o
drivers/sh/clk/core.c: In function 'clk_round_parent':
drivers/sh/clk/core.c:574: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'unsigned int'
drivers/sh/clk/core.c:594: warning: format '%lu' expects type 'long unsigned int', but argument 2 has type 'unsigned int'

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

+2 -2
+2 -2
drivers/sh/clk/core.c
··· 571 571 *best_freq = freq_max; 572 572 } 573 573 574 - pr_debug("too low freq %lu, error %lu\n", freq->frequency, 574 + pr_debug("too low freq %u, error %lu\n", freq->frequency, 575 575 target - freq_max); 576 576 577 577 if (!error) ··· 591 591 *best_freq = freq_min; 592 592 } 593 593 594 - pr_debug("too high freq %lu, error %lu\n", freq->frequency, 594 + pr_debug("too high freq %u, error %lu\n", freq->frequency, 595 595 freq_min - target); 596 596 597 597 if (!error)