diff options
author | 2024-12-04 17:23:38 +0800 | |
---|---|---|
committer | 2025-01-11 12:33:01 +0100 | |
commit | 3398b1b8111d3b7a0cf8c3296320cf265fa56541 (patch) | |
tree | 6dfdc0615f3bd0a224d5fdcff272f50f187417aa | |
parent | MIPS: Add a blank line after __HEAD (diff) | |
download | wireguard-linux-3398b1b8111d3b7a0cf8c3296320cf265fa56541.tar.xz wireguard-linux-3398b1b8111d3b7a0cf8c3296320cf265fa56541.zip |
MIPS: Fix the wrong format specifier
Make a minor change to eliminate a static checker warning. The type
of cpu is unsigned int, so the correct format specifier should be
%u instead of %d.
Signed-off-by: liujing <liujing@cmss.chinamobile.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to '')
-rw-r--r-- | arch/mips/kernel/cevt-bcm1480.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index d39a2963b451..2a14dc4ee57e 100644 --- a/arch/mips/kernel/cevt-bcm1480.c +++ b/arch/mips/kernel/cevt-bcm1480.c @@ -103,7 +103,7 @@ void sb1480_clockevent_init(void) BUG_ON(cpu > 3); /* Only have 4 general purpose timers */ - sprintf(name, "bcm1480-counter-%d", cpu); + sprintf(name, "bcm1480-counter-%u", cpu); cd->name = name; cd->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT; |