[PATCH] drm/i915/audio: Fix names that do not exist in kernel-doc comments
From: Karl Mehltretter
Date: Fri Sep 11 2026 - 16:29:43 EST
The audio component overview still refers to the former
i915_audio_component_ops and i915_audio_component_audio_ops struct
names. The generic audio component split renamed these types to
drm_audio_component_ops and drm_audio_component_audio_ops.
Update both references to match the current types.
Fixes: ae891abe7c2c ("drm/i915: Split audio component to a generic type")
Assisted-by: LLM
Signed-off-by: Karl Mehltretter <kmehltretter@xxxxxxxxx>
---
drivers/gpu/drm/i915/display/intel_audio.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/drm/i915/display/intel_audio.c
index eae76e9611055ea684dd98c34889be2413a89f80..c703da26914c1d957dff61a0220b70d3275255ce 100644
--- a/drivers/gpu/drm/i915/display/intel_audio.c
+++ b/drivers/gpu/drm/i915/display/intel_audio.c
@@ -63,9 +63,9 @@
* covered here.)
*
* The struct &i915_audio_component is used to interact between the graphics
- * and audio drivers. The struct &i915_audio_component_ops @ops in it is
+ * and audio drivers. The struct &drm_audio_component_ops @ops in it is
* defined in graphics driver and called in audio driver. The
- * struct &i915_audio_component_audio_ops @audio_ops is called from i915 driver.
+ * struct &drm_audio_component_audio_ops @audio_ops is called from i915 driver.
*/
struct intel_audio_funcs {