[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v2 5/9] i.MX: Add i.MX6 CCM and ANALOG device.
From: |
Peter Maydell |
Subject: |
Re: [Qemu-devel] [PATCH v2 5/9] i.MX: Add i.MX6 CCM and ANALOG device. |
Date: |
Mon, 29 Feb 2016 17:33:17 +0000 |
On 8 February 2016 at 22:08, Jean-Christophe Dubois <address@hidden> wrote:
> Signed-off-by: Jean-Christophe Dubois <address@hidden>
> ---
> +static uint64_t imx6_ccm_read(void *opaque, hwaddr offset, unsigned size)
> +{
> + uint32 value = 0;
This should be 'uint32_t', not 'uint32'.
(You'll find this doesn't compile on current master if you rebase it;
uint32 was a type intended only for use with the softfloat code, and
we've just eliminated it.)
Similar issues in imx6_src_read() and imx_spi_read().
You also need to make sure all your new .c files have #include "qemu/osdep.h"
as the first include they do, or they won't build on current master.
thanks
-- PMM
- Re: [Qemu-devel] [PATCH v2 4/9] i.MX: Add the CLK_IPG_HIGH clock, (continued)
[Qemu-devel] [PATCH v2 5/9] i.MX: Add i.MX6 CCM and ANALOG device., Jean-Christophe Dubois, 2016/02/08
[Qemu-devel] [PATCH v2 8/9] i.MX: Add sabrelite i.MX6 emulation., Jean-Christophe Dubois, 2016/02/08
[Qemu-devel] [PATCH v2 9/9] i.MX: Add missing descriptions in devices., Jean-Christophe Dubois, 2016/02/08
[Qemu-devel] [PATCH v2 7/9] i.MX: Add i.MX6 SOC implementation., Jean-Christophe Dubois, 2016/02/08