diff options
author | Mark Brown <broonie@kernel.org> | 2023-10-09 20:49:16 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-10-09 23:14:18 +0100 |
commit | a7ec043e601d1dca69ac827f51dbe1dbaa1e89aa (patch) | |
tree | fea389769379eb60420f9bce7639ef0e431d67e9 /sound/soc/qcom/apq8096.c | |
parent | f0d82f073d79cecbbaffff425c41db4c16b395f6 (diff) | |
parent | 9958d85968ed2df4b704105fd2a9c3669eb9cd97 (diff) | |
download | lwn-a7ec043e601d1dca69ac827f51dbe1dbaa1e89aa.tar.gz lwn-a7ec043e601d1dca69ac827f51dbe1dbaa1e89aa.zip |
ASoC: DT matching and header cleanups
Merge series from Rob Herring <robh@kernel.org>:
This is a series is part of ongoing clean-ups related to device
matching and DT related implicit includes. Essentially of_device.h has
a bunch of implicit includes and generally isn't needed any nore except
for of_match_device(). As we also generally want to get rid of
of_match_device() as well, I've done that so we're not updating the
includes twice.
Diffstat (limited to 'sound/soc/qcom/apq8096.c')
-rw-r--r-- | sound/soc/qcom/apq8096.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/qcom/apq8096.c b/sound/soc/qcom/apq8096.c index cddeb47dbcf2..7ee6df02b906 100644 --- a/sound/soc/qcom/apq8096.c +++ b/sound/soc/qcom/apq8096.c @@ -1,9 +1,9 @@ // SPDX-License-Identifier: GPL-2.0 // Copyright (c) 2018, Linaro Limited +#include <linux/mod_devicetable.h> #include <linux/module.h> #include <linux/platform_device.h> -#include <linux/of_device.h> #include <sound/soc.h> #include <sound/soc-dapm.h> #include <sound/pcm.h> |