Skip to content

Commit

Permalink
hw/arm: Fix bad print format specifiers
Browse files Browse the repository at this point in the history
We should use printf format specifier "%u" instead of "%i" 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: 5F9FD78B.8000300@huawei.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
AlexChen authored and pm215 committed Nov 23, 2020
1 parent 98e8779 commit 98554b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hw/arm/pxa2xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ static void pxa2xx_ssp_write(void *opaque, hwaddr addr,
if (value & SSCR0_MOD)
printf("%s: Attempt to use network mode\n", __func__);
if (s->enable && SSCR0_DSS(value) < 4)
printf("%s: Wrong data size: %i bits\n", __func__,
printf("%s: Wrong data size: %u bits\n", __func__,
SSCR0_DSS(value));
if (!(value & SSCR0_SSE)) {
s->sssr = 0;
Expand Down
2 changes: 1 addition & 1 deletion hw/arm/spitz.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ struct SpitzLCDTG {
static void spitz_bl_update(SpitzLCDTG *s)
{
if (s->bl_power && s->bl_intensity)
zaurus_printf("LCD Backlight now at %i/63\n", s->bl_intensity);
zaurus_printf("LCD Backlight now at %u/63\n", s->bl_intensity);
else
zaurus_printf("LCD Backlight now off\n");
}
Expand Down
2 changes: 1 addition & 1 deletion hw/arm/tosa.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ static void tosa_gpio_setup(PXA2xxState *cpu,

static uint32_t tosa_ssp_tansfer(SSISlave *dev, uint32_t value)
{
fprintf(stderr, "TG: %d %02x\n", value >> 5, value & 0x1f);
fprintf(stderr, "TG: %u %02x\n", value >> 5, value & 0x1f);
return 0;
}

Expand Down

0 comments on commit 98554b3

Please sign in to comment.