diff options
author | Richard Fitzgerald <rf@opensource.cirrus.com> | 2024-04-10 17:08:33 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-04-10 17:35:59 +0100 |
commit | 28d31ffac3d3ef6d60c4eb392a47d5e19dbb15e8 (patch) | |
tree | 8fcfe60d171d10d34a79834b46248a4597cbf2e8 | |
parent | 4693b120299a5893034d1882ddbbe08af1d2ff07 (diff) | |
download | lwn-28d31ffac3d3ef6d60c4eb392a47d5e19dbb15e8.tar.gz lwn-28d31ffac3d3ef6d60c4eb392a47d5e19dbb15e8.zip |
ASoC: cs35l56: Include array_size.h
Explicitly #include array_size.h for the source files that use
ARRAY_SIZE().
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://msgid.link/r/20240410160833.20837-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs35l56-shared.c | 1 | ||||
-rw-r--r-- | sound/soc/codecs/cs35l56.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/codecs/cs35l56-shared.c b/sound/soc/codecs/cs35l56-shared.c index 08cac58e3ab2..ac2a760aeae1 100644 --- a/sound/soc/codecs/cs35l56-shared.c +++ b/sound/soc/codecs/cs35l56-shared.c @@ -5,6 +5,7 @@ // Copyright (C) 2023 Cirrus Logic, Inc. and // Cirrus Logic International Semiconductor Ltd. +#include <linux/array_size.h> #include <linux/firmware/cirrus/wmfw.h> #include <linux/gpio/consumer.h> #include <linux/regmap.h> diff --git a/sound/soc/codecs/cs35l56.c b/sound/soc/codecs/cs35l56.c index 8d2f021fb362..5a0b55e31e3c 100644 --- a/sound/soc/codecs/cs35l56.c +++ b/sound/soc/codecs/cs35l56.c @@ -6,6 +6,7 @@ // Cirrus Logic International Semiconductor Ltd. #include <linux/acpi.h> +#include <linux/array_size.h> #include <linux/completion.h> #include <linux/debugfs.h> #include <linux/delay.h> |