diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-05-28 07:07:40 -0400 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-06-27 11:48:04 -0400 |
commit | 9dbef285a359c9bf6f04f907bdfb9f35f37a8513 (patch) | |
tree | 4a2258376c8ec86364d62aaaf1154ab6cf3e6e7a | |
parent | 8405996ff6d89bbf275a206eb69d10b98a8d5257 (diff) |
avr32: Clean up time.c #includes
Remove lots of unneeded #includes, add #include <linux/kernel.h> and
sort alphabetically.
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
-rw-r--r-- | arch/avr32/kernel/time.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/arch/avr32/kernel/time.c b/arch/avr32/kernel/time.c index 00a9862380ff..abd954fb7ba0 100644 --- a/arch/avr32/kernel/time.c +++ b/arch/avr32/kernel/time.c | |||
@@ -7,21 +7,13 @@ | |||
7 | */ | 7 | */ |
8 | #include <linux/clk.h> | 8 | #include <linux/clk.h> |
9 | #include <linux/clockchips.h> | 9 | #include <linux/clockchips.h> |
10 | #include <linux/time.h> | 10 | #include <linux/init.h> |
11 | #include <linux/module.h> | ||
12 | #include <linux/interrupt.h> | 11 | #include <linux/interrupt.h> |
13 | #include <linux/irq.h> | 12 | #include <linux/irq.h> |
14 | #include <linux/kernel_stat.h> | 13 | #include <linux/kernel.h> |
15 | #include <linux/errno.h> | 14 | #include <linux/time.h> |
16 | #include <linux/init.h> | ||
17 | #include <linux/profile.h> | ||
18 | #include <linux/sysdev.h> | ||
19 | #include <linux/err.h> | ||
20 | 15 | ||
21 | #include <asm/div64.h> | ||
22 | #include <asm/sysreg.h> | 16 | #include <asm/sysreg.h> |
23 | #include <asm/io.h> | ||
24 | #include <asm/sections.h> | ||
25 | 17 | ||
26 | #include <asm/arch/pm.h> | 18 | #include <asm/arch/pm.h> |
27 | 19 | ||