From: Murali Karicheri <m-karicheri2@xxxxxx> Date: Tue, 2 Dec 2014 16:41:42 -0500 > +static void set_pkt_info_le(u32 buff, u32 buff_len, u32 ndesc, > + struct knav_dma_desc *desc) > +{ > + desc->buff_len = cpu_to_le32(buff_len); > + desc->buff = cpu_to_le32(buff); > + desc->next_desc = cpu_to_le32(ndesc); > +} The members of knav_dma_desc are "u32", so you are going to get tons of static checker warnings from trying to assign cpu_to_le32()'s result (which is a le32) into them. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html