]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ASoC: SDCA: Unregister IRQ handlers on module remove
authorRichard Fitzgerald <rf@opensource.cirrus.com>
Wed, 8 Apr 2026 09:38:34 +0000 (10:38 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 8 Apr 2026 15:55:30 +0000 (16:55 +0100)
Ensure that all interrupt handlers are unregistered before the parent
regmap_irq is unregistered.

sdca_irq_cleanup() was only called from the component_remove(). If the
module was loaded and removed without ever being component probed the
FDL interrupts would not be unregistered and this would hit a WARN
when devm called regmap_del_irq_chip() during the removal of the
parent IRQ.

Fixes: 4e53116437e9 ("ASoC: SDCA: Fix errors in IRQ cleanup")
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://patch.msgid.link/20260408093835.2881486-5-ckeepax@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/sdca_interrupts.h
sound/soc/sdca/sdca_class_function.c
sound/soc/sdca/sdca_interrupts.c

index b47003c3d26ef4a31f607d398bd75c73d266b6fc..a515cc3df09717bad8100610bc4747dbb50d3f58 100644 (file)
@@ -83,8 +83,8 @@ int sdca_irq_populate_early(struct device *dev, struct regmap *function_regmap,
 int sdca_irq_populate(struct sdca_function_data *function,
                      struct snd_soc_component *component,
                      struct sdca_interrupt_info *info);
-void sdca_irq_cleanup(struct sdca_function_data *function,
-                     struct snd_soc_component *component,
+void sdca_irq_cleanup(struct device *dev,
+                     struct sdca_function_data *function,
                      struct sdca_interrupt_info *info);
 struct sdca_interrupt_info *sdca_irq_allocate(struct device *dev,
                                              struct regmap *regmap, int irq);
index fe404d769c78c8d0759e74cf561da24cc747af87..730103120514b44543bf9644df0db90759131588 100644 (file)
@@ -203,7 +203,7 @@ static void class_function_component_remove(struct snd_soc_component *component)
        struct class_function_drv *drv = snd_soc_component_get_drvdata(component);
        struct sdca_class_drv *core = drv->core;
 
-       sdca_irq_cleanup(drv->function, component, core->irq_info);
+       sdca_irq_cleanup(component->dev, drv->function, core->irq_info);
 }
 
 static int class_function_set_jack(struct snd_soc_component *component,
@@ -411,6 +411,13 @@ static int class_function_probe(struct auxiliary_device *auxdev,
        return 0;
 }
 
+static void class_function_remove(struct auxiliary_device *auxdev)
+{
+       struct class_function_drv *drv = auxiliary_get_drvdata(auxdev);
+
+       sdca_irq_cleanup(drv->dev, drv->function, drv->core->irq_info);
+}
+
 static int class_function_runtime_suspend(struct device *dev)
 {
        struct auxiliary_device *auxdev = to_auxiliary_dev(dev);
@@ -559,6 +566,7 @@ static struct auxiliary_driver class_function_drv = {
        },
 
        .probe          = class_function_probe,
+       .remove         = class_function_remove,
        .id_table       = class_function_id_table
 };
 module_auxiliary_driver(class_function_drv);
index 0693209ffed1b0b43d496ba408e07464d76c68b9..5cdabf8ae9da37be7700a6027dc1fc37affa063c 100644 (file)
@@ -555,17 +555,16 @@ EXPORT_SYMBOL_NS_GPL(sdca_irq_populate, "SND_SOC_SDCA");
 
 /**
  * sdca_irq_cleanup - Free all the individual IRQs for an SDCA Function
+ * @sdev: Device pointer against which the sdca_interrupt_info was allocated.
  * @function: Pointer to the SDCA Function.
- * @component: Pointer to the ASoC component for the Function.
  * @info: Pointer to the SDCA interrupt info for this device.
  *
  * Typically this would be called from the driver for a single SDCA Function.
  */
-void sdca_irq_cleanup(struct sdca_function_data *function,
-                     struct snd_soc_component *component,
+void sdca_irq_cleanup(struct device *dev,
+                     struct sdca_function_data *function,
                      struct sdca_interrupt_info *info)
 {
-       struct device *dev = component->dev;
        int i;
 
        guard(mutex)(&info->irq_lock);