diff options
author | Peng Fan <peng.fan@nxp.com> | 2025-05-06 15:29:37 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-05-06 22:48:16 +0900 |
commit | 2d703321b856acdb6589d74906e19aa5cb328d4e (patch) | |
tree | 35bbedf2082b2bd833790770d15596f2bb26c164 | |
parent | b6118100382c9e4c8ca623b3a8e8bf1a09c42aa5 (diff) |
ASoC: codec: cs42l52: Sort headers alphabetically
Sort headers alphabetically to easily insert new ones
and drop unused ones.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Link: https://patch.msgid.link/20250506-csl42x-v3-7-e9496db544c4@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs42l52.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sound/soc/codecs/cs42l52.c b/sound/soc/codecs/cs42l52.c index cd3f92c19045..ba2ccc818ba6 100644 --- a/sound/soc/codecs/cs42l52.c +++ b/sound/soc/codecs/cs42l52.c @@ -8,27 +8,27 @@ * Author: Brian Austin <brian.austin@cirrus.com> */ +#include <linux/delay.h> +#include <linux/i2c.h> +#include <linux/init.h> +#include <linux/input.h> +#include <linux/kernel.h> #include <linux/module.h> #include <linux/moduleparam.h> -#include <linux/kernel.h> -#include <linux/init.h> -#include <linux/delay.h> #include <linux/of_gpio.h> #include <linux/pm.h> -#include <linux/i2c.h> -#include <linux/input.h> +#include <linux/platform_device.h> #include <linux/regmap.h> #include <linux/slab.h> #include <linux/workqueue.h> -#include <linux/platform_device.h> #include <sound/core.h> +#include <sound/cs42l52.h> +#include <sound/initval.h> #include <sound/pcm.h> #include <sound/pcm_params.h> #include <sound/soc.h> #include <sound/soc-dapm.h> -#include <sound/initval.h> #include <sound/tlv.h> -#include <sound/cs42l52.h> #include "cs42l52.h" struct sp_config { |