diff options
author | 2024-12-17 08:05:45 +0100 | |
---|---|---|
committer | 2024-12-17 13:27:39 +0000 | |
commit | db8b9b12892f0528c3a78715243c22398ab3cb5d (patch) | |
tree | 26e5ad0c7b3a3d3c716abef6b9e70a54f86d5fb7 | |
parent | firmware: cs_dsp: Avoid using a u32 as a __be32 in cs_dsp_mock_mem_maps.c (diff) | |
download | wireguard-linux-db8b9b12892f0528c3a78715243c22398ab3cb5d.tar.xz wireguard-linux-db8b9b12892f0528c3a78715243c22398ab3cb5d.zip |
ASoC: cs42l43: don't include '<linux/find.h>' directly
The header clearly states that it does not want to be included directly,
only via '<linux/bitmap.h>'. Replace the include accordingly.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://patch.msgid.link/20241217070545.2533-2-wsa+renesas@sang-engineering.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs42l43.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs42l43.c b/sound/soc/codecs/cs42l43.c index 4236f78beec0..bee032c3ebbe 100644 --- a/sound/soc/codecs/cs42l43.c +++ b/sound/soc/codecs/cs42l43.c @@ -12,7 +12,7 @@ #include <linux/device.h> #include <linux/err.h> #include <linux/errno.h> -#include <linux/find.h> +#include <linux/bitmap.h> #include <linux/gcd.h> #include <linux/irq.h> #include <linux/irqdomain.h> |