From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754148AbbG2WYx (ORCPT ); Wed, 29 Jul 2015 18:24:53 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36922 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752483AbbG2WYw (ORCPT ); Wed, 29 Jul 2015 18:24:52 -0400 Date: Wed, 29 Jul 2015 15:24:35 -0700 From: tip-bot for Masanari Iida Message-ID: Cc: standby24x7@gmail.com, tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org Reply-To: standby24x7@gmail.com, tglx@linutronix.de, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org In-Reply-To: <1438164576-5945-1-git-send-email-standby24x7@gmail.com> References: <1438164576-5945-1-git-send-email-standby24x7@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] genirq: Use the proper parameter name in kernel doc Git-Commit-ID: 8505a81bb036253213b109baf4178ea6861e2888 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: 8505a81bb036253213b109baf4178ea6861e2888 Gitweb: http://git.kernel.org/tip/8505a81bb036253213b109baf4178ea6861e2888 Author: Masanari Iida AuthorDate: Wed, 29 Jul 2015 19:09:36 +0900 Committer: Thomas Gleixner CommitDate: Thu, 30 Jul 2015 00:14:36 +0200 genirq: Use the proper parameter name in kernel doc The following warning is emitted for make xmldocs: Warning(.//kernel/irq/chip.c:1009): No description found for parameter 'vcpu_info' Warning(.//kernel/irq/chip.c:1009): Excess function parameter 'dest' description in 'irq_chip_set_vcpu_affinity_parent' Signed-off-by: Masanari Iida Link: http://lkml.kernel.org/r/1438164576-5945-1-git-send-email-standby24x7@gmail.com Signed-off-by: Thomas Gleixner --- kernel/irq/chip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 76f199d..09304a6 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -1003,7 +1003,7 @@ int irq_chip_retrigger_hierarchy(struct irq_data *data) /** * irq_chip_set_vcpu_affinity_parent - Set vcpu affinity on the parent interrupt * @data: Pointer to interrupt specific data - * @dest: The vcpu affinity information + * @vcpu_info: The vcpu affinity information */ int irq_chip_set_vcpu_affinity_parent(struct irq_data *data, void *vcpu_info) {