diff options
author | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-01-31 15:49:24 +0300 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-03-31 21:36:04 +0300 |
commit | 9824c447aafa6fbca1be6a2dae7e99e1f0c8c564 (patch) | |
tree | 8da53759f771c0c2a7b6b423b85e587e53d9540c /arch/arm/mach-at91 | |
parent | f4e6dfcb7812c9bcc210bd7b5309bb1d241628f4 (diff) | |
download | linux-9824c447aafa6fbca1be6a2dae7e99e1f0c8c564.tar.xz |
ARM: at91: pm: Cleanup headers
Remove unnecessary header inclusions and reorder the remaining ones.
Acked-by: Wenyou Yang <wenyou.yang@atmel.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/pm.c | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c index a277981f414d..9e2b5c1e503e 100644 --- a/arch/arm/mach-at91/pm.c +++ b/arch/arm/mach-at91/pm.c @@ -10,28 +10,17 @@ * (at your option) any later version. */ -#include <linux/gpio.h> -#include <linux/suspend.h> -#include <linux/sched.h> -#include <linux/proc_fs.h> #include <linux/genalloc.h> -#include <linux/interrupt.h> -#include <linux/sysfs.h> -#include <linux/module.h> +#include <linux/io.h> +#include <linux/of_address.h> #include <linux/of.h> #include <linux/of_platform.h> -#include <linux/of_address.h> -#include <linux/platform_device.h> -#include <linux/platform_data/atmel.h> -#include <linux/io.h> +#include <linux/suspend.h> + #include <linux/clk/at91_pmc.h> -#include <asm/irq.h> -#include <linux/atomic.h> -#include <asm/mach/time.h> -#include <asm/mach/irq.h> -#include <asm/fncpy.h> #include <asm/cacheflush.h> +#include <asm/fncpy.h> #include <asm/system_misc.h> #include "generic.h" |