summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2025-03-11 12:53:39 -0700
committerLucas De Marchi <lucas.demarchi@intel.com>2025-03-12 12:54:24 -0700
commit5d806121f1cfb38fe7cc4d528d81feb1c11274b1 (patch)
treec5c6845a75185e8b886bf023fc3a8d42f5afee87 /tests
parent53d92c76fc719a27fedf0a407ca5a185094e702f (diff)
tests/intel/i915_module_load: Do not skip on snd
The fact that snd_hda_* is loaded doesn't mean i915 is. It used to be the case that loading e.g. snd_hda_intel would load i915 because of a request_module("i915") in the kernel. However that changed in commit e6d0c13e9f46 ("ALSA: hda: i915: Remove extra argument from snd_hdac_i915_init"). Drop the snd_* modules from unwanted_drivers. Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13896 Link: https://lore.kernel.org/r/20250311195339.1206647-1-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/intel/i915_module_load.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/intel/i915_module_load.c b/tests/intel/i915_module_load.c
index b3752a19c..2047d1886 100644
--- a/tests/intel/i915_module_load.c
+++ b/tests/intel/i915_module_load.c
@@ -368,8 +368,6 @@ igt_main
const char * unwanted_drivers[] = {
"i915",
"intel-gtt",
- "snd_hda_intel",
- "snd_hdmi_lpe_audio",
NULL
};