Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753136AbaB0MeI (ORCPT ); Thu, 27 Feb 2014 07:34:08 -0500 Received: from terminus.zytor.com ([198.137.202.10]:54105 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751798AbaB0MeD (ORCPT ); Thu, 27 Feb 2014 07:34:03 -0500 Date: Thu, 27 Feb 2014 04:33:29 -0800 From: tip-bot for Rashika Kheria Message-ID: Cc: linux-kernel@vger.kernel.org, rashika.kheria@gmail.com, hpa@zytor.com, mingo@kernel.org, benh@kernel.crashing.org, josh@joshtriplett.org, tglx@linutronix.de Reply-To: mingo@kernel.org, hpa@zytor.com, rashika.kheria@gmail.com, linux-kernel@vger.kernel.org, benh@kernel.crashing.org, tglx@linutronix.de, josh@joshtriplett.org In-Reply-To: References: To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/urgent] genirq: Include missing header file in irqdomain.c Git-Commit-ID: 64be38ab03e9b238a1299857fef8b3707c0ed045 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: 64be38ab03e9b238a1299857fef8b3707c0ed045 Gitweb: http://git.kernel.org/tip/64be38ab03e9b238a1299857fef8b3707c0ed045 Author: Rashika Kheria AuthorDate: Thu, 27 Feb 2014 17:10:12 +0530 Committer: Thomas Gleixner CommitDate: Thu, 27 Feb 2014 13:29:35 +0100 genirq: Include missing header file in irqdomain.c Include appropriate header file include/linux/of_irq.h in kernel/irq/irqdomain.c because it contains prototype definition of function define in kernel/irq/irqdomain.c. This eliminates the following warning in kernel/irq/irqdomain.c: kernel/irq/irqdomain.c:468:14: warning: no previous prototype for ‘irq_create_of_mapping’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Reviewed-by: Josh Triplett Cc: Benjamin Herrenschmidt Link: http://lkml.kernel.org/r/eb89aebea7ff1a46122918ac389ebecf8248be9a.1393493276.git.rashika.kheria@gmail.com Signed-off-by: Thomas Gleixner --- kernel/irq/irqdomain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index cf68bb3..f140337 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/