diff options
author | Michal Vokáč <michal.vokac@ysoft.com> | 2018-10-01 10:19:46 -0400 |
---|---|---|
committer | Thierry Reding <thierry.reding@gmail.com> | 2018-12-12 05:51:15 -0500 |
commit | e3adc7efe678ba907f99791f5adfee81faea10e6 (patch) | |
tree | c624309419a40f7a242c3b60c33542a10a02f705 /drivers/pwm/pwm-imx.c | |
parent | f82d15e223403b05fffb33ba792b87a8620f6fee (diff) |
pwm: imx: Sort include files
Sort included header files alphabetically.
Signed-off-by: Michal Vokáč <michal.vokac@ysoft.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
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 | ||