diff options
| author | Michal Vokáč <[email protected]> | 2018-10-01 14:19:46 +0000 |
|---|---|---|
| committer | Thierry Reding <[email protected]> | 2018-12-12 10:51:15 +0000 |
| commit | e3adc7efe678ba907f99791f5adfee81faea10e6 (patch) | |
| tree | c624309419a40f7a242c3b60c33542a10a02f705 /drivers/pwm/pwm-imx.c | |
| parent | pwm: lpc18xx-sct: Don't reconfigure PWM in .request and .free (diff) | |
| download | kernel-e3adc7efe678ba907f99791f5adfee81faea10e6.tar.gz kernel-e3adc7efe678ba907f99791f5adfee81faea10e6.zip | |
pwm: imx: Sort include files
Sort included header files alphabetically.
Signed-off-by: Michal Vokáč <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
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 @@ * Derived from pxa PWM driver by eric miao <[email protected]> */ -#include <linux/module.h> -#include <linux/kernel.h> -#include <linux/platform_device.h> -#include <linux/slab.h> -#include <linux/err.h> #include <linux/clk.h> #include <linux/delay.h> +#include <linux/err.h> #include <linux/io.h> -#include <linux/pwm.h> +#include <linux/kernel.h> +#include <linux/module.h> #include <linux/of.h> #include <linux/of_device.h> +#include <linux/platform_device.h> +#include <linux/pwm.h> +#include <linux/slab.h> /* i.MX1 and i.MX21 share the same PWM function block: */ |
