From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753187AbdFVQqc (ORCPT ); Thu, 22 Jun 2017 12:46:32 -0400 Received: from terminus.zytor.com ([65.50.211.136]:53821 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751288AbdFVQqX (ORCPT ); Thu, 22 Jun 2017 12:46:23 -0400 Date: Thu, 22 Jun 2017 09:40:37 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: hpa@zytor.com, peterz@infradead.org, mingo@kernel.org, hch@lst.de, tglx@linutronix.de, linux-kernel@vger.kernel.org, joro@8bytes.org, mpe@ellerman.id.au, keith.busch@intel.com, marc.zyngier@arm.com, axboe@kernel.dk Reply-To: mpe@ellerman.id.au, joro@8bytes.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, hch@lst.de, peterz@infradead.org, mingo@kernel.org, hpa@zytor.com, axboe@kernel.dk, marc.zyngier@arm.com, keith.busch@intel.com In-Reply-To: <20170619235443.343236995@linutronix.de> References: <20170619235443.343236995@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] iommu/amd: Add name to irq chip Git-Commit-ID: 290be194ba9d489e1857cc45d0dd24bf3429156b 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: 290be194ba9d489e1857cc45d0dd24bf3429156b Gitweb: http://git.kernel.org/tip/290be194ba9d489e1857cc45d0dd24bf3429156b Author: Thomas Gleixner AuthorDate: Tue, 20 Jun 2017 01:37:02 +0200 Committer: Thomas Gleixner CommitDate: Thu, 22 Jun 2017 18:21:07 +0200 iommu/amd: Add name to irq chip Add the missing name, so debugging will work proper. Signed-off-by: Thomas Gleixner Acked-by: Joerg Roedel Cc: Jens Axboe Cc: Marc Zyngier Cc: Michael Ellerman Cc: Keith Busch Cc: Peter Zijlstra Cc: iommu@lists.linux-foundation.org Cc: Christoph Hellwig Link: http://lkml.kernel.org/r/20170619235443.343236995@linutronix.de --- drivers/iommu/amd_iommu.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c index 63cacf5..590e1e8 100644 --- a/drivers/iommu/amd_iommu.c +++ b/drivers/iommu/amd_iommu.c @@ -4386,10 +4386,11 @@ static void ir_compose_msi_msg(struct irq_data *irq_data, struct msi_msg *msg) } static struct irq_chip amd_ir_chip = { - .irq_ack = ir_ack_apic_edge, - .irq_set_affinity = amd_ir_set_affinity, - .irq_set_vcpu_affinity = amd_ir_set_vcpu_affinity, - .irq_compose_msi_msg = ir_compose_msi_msg, + .name = "AMD-IR", + .irq_ack = ir_ack_apic_edge, + .irq_set_affinity = amd_ir_set_affinity, + .irq_set_vcpu_affinity = amd_ir_set_vcpu_affinity, + .irq_compose_msi_msg = ir_compose_msi_msg, }; int amd_iommu_create_irq_domain(struct amd_iommu *iommu)