]> 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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Apr 2026 11:30:42 +0000 (13:30 +0200)
[ Upstream commit 0b8757b220f94421bd4ff50cce03886387c4e71c ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/sound/sdca_interrupts.h
sound/soc/sdca/sdca_class_function.c
sound/soc/sdca/sdca_interrupts.c

index 90651fea5b212ac966589a57a1d7cd3db7f6daf4..109e7826ce38c612cb6b4f34eaa16b2ea30e70ed 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 8b6b4ca998272679641f8a6687b29fee9aa09d55..92600f419db43cdc7d32b2891161583f2a30d49c 100644 (file)
@@ -201,7 +201,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,
@@ -402,6 +402,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);
@@ -473,6 +480,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 4739fabb75f2311b0714dc0669185ebd18fe525d..76f50a0f6b0efc5551419c0ab0aedca6d1e170ef 100644 (file)
@@ -536,17 +536,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);