From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933045AbcLSKBQ (ORCPT ); Mon, 19 Dec 2016 05:01:16 -0500 Received: from terminus.zytor.com ([198.137.202.10]:56258 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932235AbcLSKBO (ORCPT ); Mon, 19 Dec 2016 05:01:14 -0500 Date: Mon, 19 Dec 2016 02:00:56 -0800 From: "tip-bot for =?UTF-8?Q?J=C3=A9r=C3=A9my?= Lefaure" Message-ID: Cc: jason@lakedaemon.net, linux-kernel@vger.kernel.org, tglx@linutronix.de, marc.zyngier@arm.com, jeremy.lefaure@lse.epita.fr, mingo@kernel.org, hpa@zytor.com Reply-To: hpa@zytor.com, mingo@kernel.org, jeremy.lefaure@lse.epita.fr, tglx@linutronix.de, marc.zyngier@arm.com, linux-kernel@vger.kernel.org, jason@lakedaemon.net In-Reply-To: <20161217002927.31947-1-jeremy.lefaure@lse.epita.fr> References: <20161217002927.31947-1-jeremy.lefaure@lse.epita.fr> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/urgent] irqchip/st: Mark st_irq_syscfg_resume() __maybe_unused Git-Commit-ID: f357563f958df06cd9ea9e614cdba30578bb08b1 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: f357563f958df06cd9ea9e614cdba30578bb08b1 Gitweb: http://git.kernel.org/tip/f357563f958df06cd9ea9e614cdba30578bb08b1 Author: Jérémy Lefaure AuthorDate: Fri, 16 Dec 2016 19:29:27 -0500 Committer: Thomas Gleixner CommitDate: Mon, 19 Dec 2016 10:55:43 +0100 irqchip/st: Mark st_irq_syscfg_resume() __maybe_unused When CONFIG_PM_SLEEP is disabled, the compiler raises a warning on st_irq_syscfg_resume: drivers/irqchip/irq-st.c:183:12: warning: 'st_irq_syscfg_resume' defined but not used [-Wunused-function] static int st_irq_syscfg_resume(struct device *dev) ^~~~~~~~~~~~~~~~~~~~ Annotate the function with __maybe_unused. Signed-off-by: Jérémy Lefaure Cc: Marc Zyngier Cc: Jason Cooper Link: http://lkml.kernel.org/r/20161217002927.31947-1-jeremy.lefaure@lse.epita.fr Signed-off-by: Thomas Gleixner --- drivers/irqchip/irq-st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/irqchip/irq-st.c b/drivers/irqchip/irq-st.c index 9af48a8..5e0e250 100644 --- a/drivers/irqchip/irq-st.c +++ b/drivers/irqchip/irq-st.c @@ -180,7 +180,7 @@ static int st_irq_syscfg_probe(struct platform_device *pdev) return st_irq_syscfg_enable(pdev); } -static int st_irq_syscfg_resume(struct device *dev) +static int __maybe_unused st_irq_syscfg_resume(struct device *dev) { struct st_irq_syscfg *ddata = dev_get_drvdata(dev);