]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
net: cosmetic: Alphabetize includes in net.c
authorJoe Hershberger <joe.hershberger@ni.com>
Wed, 23 May 2012 07:58:15 +0000 (07:58 +0000)
committerJoe Hershberger <joe.hershberger@ni.com>
Wed, 23 May 2012 22:46:17 +0000 (17:46 -0500)
Easier to find when alphabetized

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
net/net.c

index f6d294e2ac509f183dbfa23cd8e9cddbbdb3732d..de5352cb4659c6c708f0ca226a9da140ae6cf763 100644 (file)
--- a/net/net.c
+++ b/net/net.c
 
 
 #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;