From: Ioana Radulescu Date: Fri, 9 Mar 2018 18:40:55 +0000 (-0600) Subject: staging: fsl-dpaa2/eth: Use __leXX types where needed X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=504e7a5c5a9b942583827f9c141c513da505e1bd;p=linux.git staging: fsl-dpaa2/eth: Use __leXX types where needed One MC command structure got away with using uXX fields instead of __leXX. Fix it. Signed-off-by: Ioana Radulescu Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h b/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h index 3120e22496d05..d6f96f302cc64 100644 --- a/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h +++ b/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h @@ -539,8 +539,8 @@ struct dpni_rsp_get_taildrop { }; struct dpni_rsp_get_api_version { - u16 major; - u16 minor; + __le16 major; + __le16 minor; }; #endif /* _FSL_DPNI_CMD_H */