mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
virtio_console: make local symbols static
Those symbols only used within this file, and should be static. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Acked-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
1aef76e9c4
commit
3826835ab8
@ -78,8 +78,8 @@ struct ports_driver_data {
|
|||||||
};
|
};
|
||||||
static struct ports_driver_data pdrvdata;
|
static struct ports_driver_data pdrvdata;
|
||||||
|
|
||||||
DEFINE_SPINLOCK(pdrvdata_lock);
|
static DEFINE_SPINLOCK(pdrvdata_lock);
|
||||||
DECLARE_COMPLETION(early_console_added);
|
static DECLARE_COMPLETION(early_console_added);
|
||||||
|
|
||||||
/* This struct holds information that's relevant only for console ports */
|
/* This struct holds information that's relevant only for console ports */
|
||||||
struct console {
|
struct console {
|
||||||
@ -1198,7 +1198,7 @@ int __init virtio_cons_early_init(int (*put_chars)(u32, const char *, int))
|
|||||||
return hvc_instantiate(0, 0, &hv_ops);
|
return hvc_instantiate(0, 0, &hv_ops);
|
||||||
}
|
}
|
||||||
|
|
||||||
int init_port_console(struct port *port)
|
static int init_port_console(struct port *port)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user