
Tidy up the existing include list before we add more includes in the following patch.
Signed-off-by: Paul Barker paul.barker.ct@bp.renesas.com --- v2->v3: * New patch, required to keep the include list in order in the following patch.
drivers/serial/serial_sh.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/serial/serial_sh.c b/drivers/serial/serial_sh.c index 2b650d458e71..6ba3b15ff1f8 100644 --- a/drivers/serial/serial_sh.c +++ b/drivers/serial/serial_sh.c @@ -7,16 +7,16 @@ */
#include <common.h> -#include <errno.h> -#include <clk.h> -#include <dm.h> #include <asm/global_data.h> #include <asm/io.h> #include <asm/processor.h> -#include <serial.h> -#include <linux/compiler.h> +#include <clk.h> +#include <dm.h> #include <dm/platform_data/serial_sh.h> +#include <errno.h> +#include <linux/compiler.h> #include <linux/delay.h> +#include <serial.h> #include "serial_sh.h"
DECLARE_GLOBAL_DATA_PTR;