From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from aserp1040.oracle.com (aserp1040.oracle.com [141.146.126.69]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id EB5EE1A023C for ; Tue, 26 Jan 2016 10:06:02 +1100 (AEDT) Subject: Re: [PATCH 3/3] tty: hvc_xen: hide xen_console_remove when unused To: Arnd Bergmann , Greg Kroah-Hartman References: <1453758918-3577213-1-git-send-email-arnd@arndb.de> <1453758918-3577213-3-git-send-email-arnd@arndb.de> Cc: linux-arm-kernel@lists.infradead.org, Jiri Slaby , David Vrabel , Julien Grall , Stefano Stabellini , Wei Liu , Jan Beulich , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org From: Boris Ostrovsky Message-ID: <56A6AA42.3000705@oracle.com> Date: Mon, 25 Jan 2016 18:05:38 -0500 MIME-Version: 1.0 In-Reply-To: <1453758918-3577213-3-git-send-email-arnd@arndb.de> Content-Type: text/plain; charset=windows-1252; format=flowed List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On 01/25/2016 04:54 PM, Arnd Bergmann wrote: > xencons_disconnect_backend() is only called from xen_console_remove(), and also from xencons_probe()/xencons_resume(). But those two are also under the same ifdef. -boris > which is conditionally compiled, so we get a harmless warning when > CONFIG_HVC_XEN_FRONTEND is unset: > > hvc/hvc_xen.c:350:12: error: 'xen_console_remove' defined but not used [-Werror=unused-function] > > This moves the function down into the same #ifdef section to silence > the warning. > > Signed-off-by: Arnd Bergmann > --- > drivers/tty/hvc/hvc_xen.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/tty/hvc/hvc_xen.c b/drivers/tty/hvc/hvc_xen.c > index fa816b7193b6..11725422dacb 100644 > --- a/drivers/tty/hvc/hvc_xen.c > +++ b/drivers/tty/hvc/hvc_xen.c > @@ -323,6 +323,7 @@ void xen_console_resume(void) > } > } > > +#ifdef CONFIG_HVC_XEN_FRONTEND > static void xencons_disconnect_backend(struct xencons_info *info) > { > if (info->irq > 0) > @@ -363,7 +364,6 @@ static int xen_console_remove(struct xencons_info *info) > return 0; > } > > -#ifdef CONFIG_HVC_XEN_FRONTEND > static int xencons_remove(struct xenbus_device *dev) > { > return xen_console_remove(dev_get_drvdata(&dev->dev));