Fix Error: chip/stm32_qencoder.c:989:46: error: format specifies type 'unsigned long' but the argument has type 'uint32_t' (aka 'unsigned int')
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
7bda8747b2
commit
6386596731
@ -986,7 +986,8 @@ static int stm32_shutdown(struct qe_lowerhalf_s *lower)
|
||||
putreg32(regval, regaddr);
|
||||
leave_critical_section(flags);
|
||||
|
||||
sninfo("regaddr: %08lx resetbit: %08lx\n", regaddr, resetbit);
|
||||
sninfo("regaddr: %08" PRIx32 " resetbit: %08" PRIx32 "\n",
|
||||
regaddr, resetbit);
|
||||
stm32_dumpregs(priv, "After stop");
|
||||
|
||||
/* Disable clocking to the timer */
|
||||
|
Loading…
Reference in New Issue
Block a user