summaryrefslogtreecommitdiff
path: root/drivers/tty/hvc
diff options
context:
space:
mode:
authorruanjinjie <ruanjinjie@huawei.com>2022-10-19 09:44:12 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-11-03 05:52:36 +0300
commitcc72a1eea5e3f712ab4d59615bf1d4479cee16fc (patch)
treedad4d58f402051f44a2b2a3f66a3a15acc8ddeea /drivers/tty/hvc
parent2cfc64f3f0e1c1136b1a8247e53dc24c54f0bf93 (diff)
downloadlinux-cc72a1eea5e3f712ab4d59615bf1d4479cee16fc.tar.xz
tty: hvc: make hvc_rtas_dev static
The symbol is not used outside of the file, so mark it static. Fixes the following warning: drivers/tty/hvc/hvc_rtas.c:29:19: warning: symbol 'hvc_rtas_dev' was not declared. Should it be static? Reviewed-by: Jiri Slaby <jirislaby@kernel.org> Signed-off-by: ruanjinjie <ruanjinjie@huawei.com> Link: https://lore.kernel.org/r/20221019064412.3759874-1-ruanjinjie@huawei.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/hvc')
-rw-r--r--drivers/tty/hvc/hvc_rtas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/hvc/hvc_rtas.c b/drivers/tty/hvc/hvc_rtas.c
index e8b8c645482b..184d325abeed 100644
--- a/drivers/tty/hvc/hvc_rtas.c
+++ b/drivers/tty/hvc/hvc_rtas.c
@@ -26,7 +26,7 @@
#include "hvc_console.h"
#define hvc_rtas_cookie 0x67781e15
-struct hvc_struct *hvc_rtas_dev;
+static struct hvc_struct *hvc_rtas_dev;
static int rtascons_put_char_token = RTAS_UNKNOWN_SERVICE;
static int rtascons_get_char_token = RTAS_UNKNOWN_SERVICE;