Просмотр исходного кода

serial: pxa: clean-up include file order

Cleaning up order of include files by sorting them alphabetically
keeping in mind to leave common.h on top.

Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Marcel Ziswiler 9 лет назад
Родитель
Сommit
8648b2358a
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      drivers/serial/serial_pxa.c

+ 2 - 2
drivers/serial/serial_pxa.c

@@ -18,12 +18,12 @@
  */
 
 #include <common.h>
-#include <watchdog.h>
-#include <serial.h>
 #include <asm/arch/pxa-regs.h>
 #include <asm/arch/regs-uart.h>
 #include <asm/io.h>
 #include <linux/compiler.h>
+#include <serial.h>
+#include <watchdog.h>
 
 DECLARE_GLOBAL_DATA_PTR;