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>
This commit is contained in:
Ioana Radulescu 2018-03-09 12:40:55 -06:00 committed by Greg Kroah-Hartman
parent 0922a464a6
commit 504e7a5c5a

View file

@ -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 */