diff options
Diffstat (limited to 'drivers/pwm/pwm-imx.c')
-rw-r--r-- | drivers/pwm/pwm-imx.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c index 1d5242c9cde0..bcbcac405718 100644 --- a/drivers/pwm/pwm-imx.c +++ b/drivers/pwm/pwm-imx.c | |||
@@ -5,17 +5,17 @@ | |||
5 | * Derived from pxa PWM driver by eric miao <eric.miao@marvell.com> | 5 | * Derived from pxa PWM driver by eric miao <eric.miao@marvell.com> |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <linux/module.h> | ||
9 | #include <linux/kernel.h> | ||
10 | #include <linux/platform_device.h> | ||
11 | #include <linux/slab.h> | ||
12 | #include <linux/err.h> | ||
13 | #include <linux/clk.h> | 8 | #include <linux/clk.h> |
14 | #include <linux/delay.h> | 9 | #include <linux/delay.h> |
10 | #include <linux/err.h> | ||
15 | #include <linux/io.h> | 11 | #include <linux/io.h> |
16 | #include <linux/pwm.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/module.h> | ||
17 | #include <linux/of.h> | 14 | #include <linux/of.h> |
18 | #include <linux/of_device.h> | 15 | #include <linux/of_device.h> |
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/pwm.h> | ||
18 | #include <linux/slab.h> | ||
19 | 19 | ||
20 | /* i.MX1 and i.MX21 share the same PWM function block: */ | 20 | /* i.MX1 and i.MX21 share the same PWM function block: */ |
21 | 21 | ||