From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752381AbdFUOCc (ORCPT ); Wed, 21 Jun 2017 10:02:32 -0400 Received: from terminus.zytor.com ([65.50.211.136]:56577 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752098AbdFUOCa (ORCPT ); Wed, 21 Jun 2017 10:02:30 -0400 Date: Wed, 21 Jun 2017 06:59:20 -0700 From: tip-bot for Bartosz Golaszewski Message-ID: Cc: brgl@bgdev.pl, hpa@zytor.com, linux-kernel@vger.kernel.org, marc.zyngier@arm.com, corbet@lwn.net, tglx@linutronix.de, mingo@kernel.org Reply-To: brgl@bgdev.pl, corbet@lwn.net, tglx@linutronix.de, marc.zyngier@arm.com, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: <1496246820-13250-3-git-send-email-brgl@bgdev.pl> References: <1496246820-13250-3-git-send-email-brgl@bgdev.pl> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] irq/generic-chip: Provide irq_destroy_generic_chip() Git-Commit-ID: 32bb6cbb3b4ea5ca24e3fa13e11772c192616e04 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 32bb6cbb3b4ea5ca24e3fa13e11772c192616e04 Gitweb: http://git.kernel.org/tip/32bb6cbb3b4ea5ca24e3fa13e11772c192616e04 Author: Bartosz Golaszewski AuthorDate: Wed, 31 May 2017 18:06:57 +0200 Committer: Thomas Gleixner CommitDate: Wed, 21 Jun 2017 15:53:10 +0200 irq/generic-chip: Provide irq_destroy_generic_chip() Most users of irq_alloc_generic_chip() call irq_setup_generic_chip() too. To simplify the cleanup provide a function that both removes a generic chip and frees its memory. Signed-off-by: Bartosz Golaszewski Signed-off-by: Thomas Gleixner Acked-by: Marc Zyngier Cc: linux-doc@vger.kernel.org Cc: Jonathan Corbet Link: http://lkml.kernel.org/r/1496246820-13250-3-git-send-email-brgl@bgdev.pl --- include/linux/irq.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/linux/irq.h b/include/linux/irq.h index 2c957fe..dc63aa1 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h @@ -979,6 +979,14 @@ static inline void irq_free_generic_chip(struct irq_chip_generic *gc) kfree(gc); } +static inline void irq_destroy_generic_chip(struct irq_chip_generic *gc, + u32 msk, unsigned int clr, + unsigned int set) +{ + irq_remove_generic_chip(gc, msk, clr, set); + irq_free_generic_chip(gc); +} + static inline struct irq_chip_type *irq_data_get_chip_type(struct irq_data *d) { return container_of(d->chip, struct irq_chip_type, chip);