diff options
author | Ioana Radulescu <ruxandra.radulescu@nxp.com> | 2018-03-09 12:40:55 -0600 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-12 10:13:54 +0100 |
commit | 504e7a5c5a9b942583827f9c141c513da505e1bd (patch) | |
tree | 5c1813f52683e592adc98f74c643ba03ff83891b /drivers | |
parent | 0922a464a621eab112486c93b14f414409f0d904 (diff) |
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 <ruxandra.radulescu@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h b/drivers/staging/fsl-dpaa2/ethernet/dpni-cmd.h index 3120e22496d0..d6f96f302cc6 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 */ |