diff mbox series

[v1] ASoC: tas2781: Move the "include linux/debugfs.h" into tas2781.h

Message ID 20250612044252.1025-1-shenghao-ding@ti.com
State New
Headers show
Series [v1] ASoC: tas2781: Move the "include linux/debugfs.h" into tas2781.h | expand

Commit Message

Shenghao Ding June 12, 2025, 4:42 a.m. UTC
Move the include linux/debugfs.h into tas2781.h for code clean.

Signed-off-by: Shenghao Ding <shenghao-ding@ti.com>
---
 include/sound/tas2781.h        | 4 ++++
 sound/soc/codecs/tas2781-i2c.c | 3 ---
 2 files changed, 4 insertions(+), 3 deletions(-)

Comments

Jay Thomas June 16, 2025, 5:16 p.m. UTC | #1
I would like to unsubscribe from this email list.  How do I do that?

On Thu, Jun 12, 2025 at 12:36 PM Mark Brown <broonie@kernel.org> wrote:

> On Thu, 12 Jun 2025 12:42:52 +0800, Shenghao Ding wrote:
> > Move the include linux/debugfs.h into tas2781.h for code clean.
> >
> >
>
> Applied to
>
>    https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
> for-next
>
> Thanks!
>
> [1/1] ASoC: tas2781: Move the "include linux/debugfs.h" into tas2781.h
>       commit: 8a5a5cecb79058b608e5562d8998123a3adb313c
>
> All being well this means that it will be integrated into the linux-next
> tree (usually sometime in the next 24 hours) and sent to Linus during
> the next merge window (or sooner if it is a bug fix), however if
> problems are discovered then the patch may be dropped or reverted.
>
> You may get further e-mails resulting from automated or manual testing
> and review of the tree, please engage with people reporting problems and
> send followup patches addressing any issues that are reported if needed.
>
> If any updates are required or you are submitting further changes they
> should be sent as incremental updates against current git, existing
> patches will not be replaced.
>
> Please add any relevant lists and maintainers to the CCs when replying
> to this mail.
>
> Thanks,
> Mark
>
>
diff mbox series

Patch

diff --git a/include/sound/tas2781.h b/include/sound/tas2781.h
index 40cd3bd079b5..3875e92f1ec5 100644
--- a/include/sound/tas2781.h
+++ b/include/sound/tas2781.h
@@ -17,6 +17,10 @@ 
 #ifndef __TAS2781_H__
 #define __TAS2781_H__
 
+#ifdef CONFIG_SND_SOC_TAS2781_ACOUST_I2C
+#include <linux/debugfs.h>
+#endif
+
 #include "tas2781-dsp.h"
 
 /* version number */
diff --git a/sound/soc/codecs/tas2781-i2c.c b/sound/soc/codecs/tas2781-i2c.c
index c40d8f754d89..9f4d965a1335 100644
--- a/sound/soc/codecs/tas2781-i2c.c
+++ b/sound/soc/codecs/tas2781-i2c.c
@@ -14,9 +14,6 @@ 
 //
 
 #include <linux/crc8.h>
-#ifdef CONFIG_SND_SOC_TAS2781_ACOUST_I2C
-#include <linux/debugfs.h>
-#endif
 #include <linux/firmware.h>
 #include <linux/gpio/consumer.h>
 #include <linux/i2c.h>