diff options
author | Simon Glass <sjg@chromium.org> | 2015-07-07 20:53:38 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-06 07:31:37 -0600 |
commit | a26925913cb6b14182ab7bc31154079cd99206dd (patch) | |
tree | 77382abe2badc721befa13904358aff677008657 /drivers/usb/eth | |
parent | f58a41e001c5ad5b9ae7e49b37b031f7880b5638 (diff) |
net: smsc95xx: Sort the include files
Tidy up the include file order before adding more.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/eth')
-rw-r--r-- | drivers/usb/eth/smsc95xx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/eth/smsc95xx.c b/drivers/usb/eth/smsc95xx.c index a7e50d6a6c5..8ebe4d6bb85 100644 --- a/drivers/usb/eth/smsc95xx.c +++ b/drivers/usb/eth/smsc95xx.c @@ -6,12 +6,13 @@ * SPDX-License-Identifier: GPL-2.0+ */ -#include <asm/unaligned.h> #include <common.h> +#include <errno.h> +#include <malloc.h> #include <usb.h> +#include <asm/unaligned.h> #include <linux/mii.h> #include "usb_ether.h" -#include <malloc.h> /* SMSC LAN95xx based USB 2.0 Ethernet Devices */ |