On 8 February 2016 at 22:08, Jean-Christophe Dubois <j...@tribudubois.net> wrote: > Signed-off-by: Jean-Christophe Dubois <j...@tribudubois.net> > ---
> +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