diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:58:15 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:46:17 -0500 | 
| commit | 4545f4e6dbcf4ed6399e1279ddbfe18b368db2aa (patch) | |
| tree | bf2bfea8c02075f5f1ab7adeb0676330623dfa54 /net/net.c | |
| parent | f8315731db45cda13e3ad9d365dd61f14c4ab19c (diff) | |
| download | olio-uboot-2014.01-4545f4e6dbcf4ed6399e1279ddbfe18b368db2aa.tar.xz olio-uboot-2014.01-4545f4e6dbcf4ed6399e1279ddbfe18b368db2aa.zip | |
net: cosmetic: Alphabetize includes in net.c
Easier to find when alphabetized
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net/net.c')
| -rw-r--r-- | net/net.c | 24 | 
1 files changed, 12 insertions, 12 deletions
| @@ -75,27 +75,27 @@  #include <common.h> -#include <watchdog.h>  #include <command.h> -#include <linux/compiler.h>  #include <net.h> -#include "arp.h" -#include "bootp.h" -#include "tftp.h" -#include "rarp.h" -#include "nfs.h" -#ifdef CONFIG_STATUS_LED -#include <status_led.h> +#if defined(CONFIG_STATUS_LED)  #include <miiphy.h> +#include <status_led.h>  #endif -#if defined(CONFIG_CMD_SNTP) -#include "sntp.h" -#endif +#include <watchdog.h> +#include <linux/compiler.h> +#include "arp.h" +#include "bootp.h"  #include "cdp.h"  #if defined(CONFIG_CMD_DNS)  #include "dns.h"  #endif +#include "nfs.h"  #include "ping.h" +#include "rarp.h" +#if defined(CONFIG_CMD_SNTP) +#include "sntp.h" +#endif +#include "tftp.h"  DECLARE_GLOBAL_DATA_PTR; |