From: liujing Date: Wed, 4 Dec 2024 09:23:38 +0000 (+0800) Subject: MIPS: Fix the wrong format specifier X-Git-Tag: v6.14-rc1~73^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3398b1b8111d3b7a0cf8c3296320cf265fa56541;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/kernel/cevt-bcm1480.c b/arch/mips/kernel/cevt-bcm1480.c index d39a2963b4511..2a14dc4ee57ef 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;