diff options
author | Thierry Reding <treding@nvidia.com> | 2014-07-11 03:44:49 -0400 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2014-07-17 07:29:57 -0400 |
commit | a0524acc94c91c72c2968a76eddc6f3afe82f9f2 (patch) | |
tree | aa56b590f78f5f00a15551cd4d97c3523d5fc469 /arch/arm/mach-tegra/fuse.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/fuse.c')
-rw-r--r-- | arch/arm/mach-tegra/fuse.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-tegra/fuse.c b/arch/arm/mach-tegra/fuse.c index 930fef861227..af283039e37f 100644 --- a/arch/arm/mach-tegra/fuse.c +++ b/arch/arm/mach-tegra/fuse.c | |||
@@ -18,17 +18,17 @@ | |||
18 | * | 18 | * |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/kernel.h> | 21 | #include <linux/clk.h> |
22 | #include <linux/io.h> | ||
23 | #include <linux/export.h> | 22 | #include <linux/export.h> |
23 | #include <linux/io.h> | ||
24 | #include <linux/kernel.h> | ||
24 | #include <linux/random.h> | 25 | #include <linux/random.h> |
25 | #include <linux/clk.h> | ||
26 | 26 | ||
27 | #include <soc/tegra/fuse.h> | 27 | #include <soc/tegra/fuse.h> |
28 | 28 | ||
29 | #include "apbio.h" | ||
29 | #include "fuse.h" | 30 | #include "fuse.h" |
30 | #include "iomap.h" | 31 | #include "iomap.h" |
31 | #include "apbio.h" | ||
32 | 32 | ||
33 | /* Tegra20 only */ | 33 | /* Tegra20 only */ |
34 | #define FUSE_UID_LOW 0x108 | 34 | #define FUSE_UID_LOW 0x108 |