]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
tty: hvc_xen: hide xen_console_remove when unused
authorArnd Bergmann <arnd@arndb.de>
Mon, 25 Jan 2016 21:54:58 +0000 (22:54 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Sun, 4 Mar 2018 15:28:30 +0000 (10:28 -0500)
commit316c580c36c6fb5c8394cfffa87fab57c0aee31a
treeb0667bffb19c153ac375ab28d932851f8edd4675
parent109dc09b90512383893b5d3e61886660b5e762e7
tty: hvc_xen: hide xen_console_remove when unused

[ Upstream commit e36ae3439936e13c33f5841c7c2c1a9875acbb6d ]

xencons_disconnect_backend() is only called from xen_console_remove(),
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 <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
drivers/tty/hvc/hvc_xen.c