mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
i.MX31: Fix bad printf format specifiers
We should use printf format specifier "%u" instead of "%d" for argument of type "unsigned int". Reported-by: Euler Robot <euler.robot@huawei.com> Signed-off-by: Alex Chen <alex.chen@huawei.com> Message-id: 20201126111109.112238-3-alex.chen@huawei.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
26c69099f7
commit
a88ae03757
2 changed files with 9 additions and 9 deletions
|
@ -89,7 +89,7 @@ static const char *imx31_ccm_reg_name(uint32_t reg)
|
|||
case IMX31_CCM_PDR2_REG:
|
||||
return "PDR2";
|
||||
default:
|
||||
sprintf(unknown, "[%d ?]", reg);
|
||||
sprintf(unknown, "[%u ?]", reg);
|
||||
return unknown;
|
||||
}
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ static uint32_t imx31_ccm_get_pll_ref_clk(IMXCCMState *dev)
|
|||
freq = CKIH_FREQ;
|
||||
}
|
||||
|
||||
DPRINTF("freq = %d\n", freq);
|
||||
DPRINTF("freq = %u\n", freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
@ -133,7 +133,7 @@ static uint32_t imx31_ccm_get_mpll_clk(IMXCCMState *dev)
|
|||
freq = imx_ccm_calc_pll(s->reg[IMX31_CCM_MPCTL_REG],
|
||||
imx31_ccm_get_pll_ref_clk(dev));
|
||||
|
||||
DPRINTF("freq = %d\n", freq);
|
||||
DPRINTF("freq = %u\n", freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
@ -150,7 +150,7 @@ static uint32_t imx31_ccm_get_mcu_main_clk(IMXCCMState *dev)
|
|||
freq = imx31_ccm_get_mpll_clk(dev);
|
||||
}
|
||||
|
||||
DPRINTF("freq = %d\n", freq);
|
||||
DPRINTF("freq = %u\n", freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ static uint32_t imx31_ccm_get_hclk_clk(IMXCCMState *dev)
|
|||
freq = imx31_ccm_get_mcu_main_clk(dev)
|
||||
/ (1 + EXTRACT(s->reg[IMX31_CCM_PDR0_REG], MAX));
|
||||
|
||||
DPRINTF("freq = %d\n", freq);
|
||||
DPRINTF("freq = %u\n", freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
@ -176,7 +176,7 @@ static uint32_t imx31_ccm_get_ipg_clk(IMXCCMState *dev)
|
|||
freq = imx31_ccm_get_hclk_clk(dev)
|
||||
/ (1 + EXTRACT(s->reg[IMX31_CCM_PDR0_REG], IPG));
|
||||
|
||||
DPRINTF("freq = %d\n", freq);
|
||||
DPRINTF("freq = %u\n", freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ static uint32_t imx31_ccm_get_clock_frequency(IMXCCMState *dev, IMXClk clock)
|
|||
break;
|
||||
}
|
||||
|
||||
DPRINTF("Clock = %d) = %d\n", clock, freq);
|
||||
DPRINTF("Clock = %d) = %u\n", clock, freq);
|
||||
|
||||
return freq;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue