Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 594cedb3 authored by Sudheer Papothi's avatar Sudheer Papothi
Browse files

ASoC: codecs: Use resource managed function calls during irq exit



wcd_init_irq uses resource managed irq addition. Similarly,
use resource managed irq deletion in wcd_irq_exit.

Change-Id: I67c702c1d2fbec0c7fd496672fae03a82cb63048
Signed-off-by: default avatarSudheer Papothi <spapothi@codeaurora.org>
parent 1fc4ce67
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
/* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 */

#include <linux/kernel.h>
@@ -178,7 +178,8 @@ int wcd_irq_exit(struct wcd_irq_info *irq_info, struct irq_domain *virq)
		return -EINVAL;
	}

	regmap_del_irq_chip(irq_find_mapping(virq, 0), irq_info->irq_chip);
	devm_regmap_del_irq_chip(irq_info->dev, irq_find_mapping(virq, 0),
				 irq_info->irq_chip);

	return 0;
}