On Fri, 23 Oct 2015 11:36:02 +0100 "Alejandro.Lucero" <alejandro.lucero at netronome.com> wrote:
> +static inline __u32 > +nfp_qcp_read(__u8 *q, enum nfp_qcp_ptr ptr) > +{ > + __u32 off; > + __u32 val; > + Please don't use Linux kernel typedefs (__u32) in DPDK code. Instead use stdint types (uint32_t)