aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/pm.c
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-07-11 03:44:49 -0400
committerThierry Reding <treding@nvidia.com>2014-07-17 07:29:57 -0400
commita0524acc94c91c72c2968a76eddc6f3afe82f9f2 (patch)
treeaa56b590f78f5f00a15551cd4d97c3523d5fc469 /arch/arm/mach-tegra/pm.c
parent306a7f9139318a28063282a15b9f9ebacf09c9b9 (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/pm.c')
-rw-r--r--arch/arm/mach-tegra/pm.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/arm/mach-tegra/pm.c b/arch/arm/mach-tegra/pm.c
index f55b05a29b55..ae4826e43171 100644
--- a/arch/arm/mach-tegra/pm.c
+++ b/arch/arm/mach-tegra/pm.c
@@ -16,30 +16,30 @@
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */ 17 */
18 18
19#include <linux/kernel.h> 19#include <linux/clk/tegra.h>
20#include <linux/spinlock.h>
21#include <linux/io.h>
22#include <linux/cpumask.h> 20#include <linux/cpumask.h>
23#include <linux/delay.h>
24#include <linux/cpu_pm.h> 21#include <linux/cpu_pm.h>
25#include <linux/suspend.h> 22#include <linux/delay.h>
26#include <linux/err.h> 23#include <linux/err.h>
24#include <linux/io.h>
25#include <linux/kernel.h>
27#include <linux/slab.h> 26#include <linux/slab.h>
28#include <linux/clk/tegra.h> 27#include <linux/spinlock.h>
28#include <linux/suspend.h>
29 29
30#include <asm/smp_plat.h>
31#include <asm/cacheflush.h> 30#include <asm/cacheflush.h>
32#include <asm/suspend.h>
33#include <asm/idmap.h> 31#include <asm/idmap.h>
34#include <asm/proc-fns.h> 32#include <asm/proc-fns.h>
33#include <asm/smp_plat.h>
34#include <asm/suspend.h>
35#include <asm/tlbflush.h> 35#include <asm/tlbflush.h>
36 36
37#include "iomap.h"
38#include "reset.h"
39#include "flowctrl.h" 37#include "flowctrl.h"
40#include "fuse.h" 38#include "fuse.h"
41#include "pm.h" 39#include "iomap.h"
42#include "pmc.h" 40#include "pmc.h"
41#include "pm.h"
42#include "reset.h"
43#include "sleep.h" 43#include "sleep.h"
44 44
45#ifdef CONFIG_PM_SLEEP 45#ifdef CONFIG_PM_SLEEP