Commit 0f3c3cc9 authored by Andreas Färber's avatar Andreas Färber Committed by Stefan Hajnoczi
Browse files

lm32: Fix mixup of uint32 and uint32_t



Commit d23948b1 (lm32: add Milkymist
VGAFB support) introduced a stray usage of the softfloat uint32 type.

Use uint32_t instead.

Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
Acked-by: default avatarMichael Walle <michael@walle.cc>
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
parent 3c941c61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@
#elif BITS == 24
#define COPY_PIXEL(to, r, g, b)                    \
    do {                                           \
        uint32 tmp = rgb_to_pixel24(r, g, b);      \
        uint32_t tmp = rgb_to_pixel24(r, g, b);    \
        *(to++) =         tmp & 0xff;              \
        *(to++) =  (tmp >> 8) & 0xff;              \
        *(to++) = (tmp >> 16) & 0xff;              \