diff options
author | Thierry Reding <treding@nvidia.com> | 2014-07-11 09:44:49 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-07-17 13:29:57 +0200 |
commit | a0524acc94c91c72c2968a76eddc6f3afe82f9f2 (patch) | |
tree | aa56b590f78f5f00a15551cd4d97c3523d5fc469 /arch/arm/mach-tegra/powergate.c | |
parent | 306a7f9139318a28063282a15b9f9ebacf09c9b9 (diff) |
ARM: tegra: Sort includes alphabetically
If these aren't sorted alphabetically, then the logical choice is to
append new ones, however that creates a lot of potential for conflicts
because every change will then add new includes in the same location.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/powergate.c')
-rw-r--r-- | arch/arm/mach-tegra/powergate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/powergate.c b/arch/arm/mach-tegra/powergate.c index 7b148bc6c99..c12044de629 100644 --- a/arch/arm/mach-tegra/powergate.c +++ b/arch/arm/mach-tegra/powergate.c @@ -17,18 +17,18 @@ * */ -#include <linux/kernel.h> #include <linux/clk.h> +#include <linux/clk/tegra.h> #include <linux/debugfs.h> #include <linux/delay.h> #include <linux/err.h> #include <linux/export.h> #include <linux/init.h> #include <linux/io.h> +#include <linux/kernel.h> #include <linux/reset.h> #include <linux/seq_file.h> #include <linux/spinlock.h> -#include <linux/clk/tegra.h> #include <soc/tegra/powergate.h> |