diff options
| author | LI Qingwu <Qing-wu.Li@leica-geosystems.com.cn> | 2025-11-17 05:45:10 +0000 |
|---|---|---|
| committer | Lee Jones <lee@kernel.org> | 2025-11-20 12:20:24 +0000 |
| commit | c7a2e5eed13b8eec5e1d38fa15d2108cc5f8c730 (patch) | |
| tree | b6d9cf959d5ced89475d32874181d6bf750e97f7 /drivers/leds | |
| parent | bb64206276db15f1d6e115febb262c9830628625 (diff) | |
leds: pwm: Reorder include files to alphabetic order
Reorder include files to alphabetic order to simplify maintenance
No functional change.
Signed-off-by: LI Qingwu <Qing-wu.Li@leica-geosystems.com.cn>
Link: https://patch.msgid.link/20251117054511.730246-3-Qing-wu.Li@leica-geosystems.com.cn
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/leds')
| -rw-r--r-- | drivers/leds/leds-pwm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/leds/leds-pwm.c b/drivers/leds/leds-pwm.c index dac96d91e6bf..6c1f2f50ff85 100644 --- a/drivers/leds/leds-pwm.c +++ b/drivers/leds/leds-pwm.c @@ -9,13 +9,13 @@ * based on leds-gpio.c by Raphael Assenat <raph@8d.com> */ +#include <linux/err.h> #include <linux/gpio/consumer.h> -#include <linux/module.h> #include <linux/kernel.h> -#include <linux/platform_device.h> -#include <linux/of.h> #include <linux/leds.h> -#include <linux/err.h> +#include <linux/module.h> +#include <linux/of.h> +#include <linux/platform_device.h> #include <linux/pwm.h> #include <linux/slab.h> |