diff options
author | Ruan Jinjie <[email protected]> | 2023-08-17 17:37:39 +0800 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2023-08-18 09:10:22 +0200 |
commit | 828b871ac11a2a7d7c061e2a29a0f0a1225c694a (patch) | |
tree | 2ca5d59a63eebcd64c4c3c4f2e2600d0ea666ed7 | |
parent | a707885aff6cfa4f2abcb33ca684044afe4e632c (diff) |
ALSA: Make SND_PCMTEST depend on DEBUG_FS
Since pcmtest is a test module that manipulates or gets
notification via debugfs, without DEBUG_FS it can not work fine.
So make SND_PCMTEST depend on DEBUG_FS.
Signed-off-by: Ruan Jinjie <[email protected]>
Acked-by: Ivan Orlov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r-- | sound/drivers/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/drivers/Kconfig b/sound/drivers/Kconfig index 41c171468c1e..6debd8e95cb7 100644 --- a/sound/drivers/Kconfig +++ b/sound/drivers/Kconfig @@ -111,6 +111,7 @@ config SND_ALOOP config SND_PCMTEST tristate "Virtual PCM test driver" + depends on DEBUG_FS select SND_PCM help Say 'Y' or 'M' to include support for the Virtual PCM test driver. |