Commit 1605ec04 authored by WANG Cong's avatar WANG Cong Committed by Linus Torvalds

uml: make three functions static

Make the following three functions static, since they don't need to be global.

arch/um/drivers/mcast_kern.c::mcast_setup()
arch/um/drivers/mconsole_user.c::mconsole_reply_v0()
arch/um/drivers/port_user.c::port_pre_exec()
Acked-by: default avatarJeff Dike <jdike@addtoit.com>
Signed-off-by: default avatarWANG Cong <wangcong@zeuux.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 02d324b1
...@@ -58,7 +58,7 @@ static const struct net_kern_info mcast_kern_info = { ...@@ -58,7 +58,7 @@ static const struct net_kern_info mcast_kern_info = {
.write = mcast_write, .write = mcast_write,
}; };
int mcast_setup(char *str, char **mac_out, void *data) static int mcast_setup(char *str, char **mac_out, void *data)
{ {
struct mcast_init *init = data; struct mcast_init *init = data;
char *port_str = NULL, *ttl_str = NULL, *remain; char *port_str = NULL, *ttl_str = NULL, *remain;
......
...@@ -39,7 +39,7 @@ static struct mconsole_command commands[] = { ...@@ -39,7 +39,7 @@ static struct mconsole_command commands[] = {
/* Initialized in mconsole_init, which is an initcall */ /* Initialized in mconsole_init, which is an initcall */
char mconsole_socket_name[256]; char mconsole_socket_name[256];
int mconsole_reply_v0(struct mc_request *req, char *reply) static int mconsole_reply_v0(struct mc_request *req, char *reply)
{ {
struct iovec iov; struct iovec iov;
struct msghdr msg; struct msghdr msg;
......
...@@ -153,7 +153,7 @@ struct port_pre_exec_data { ...@@ -153,7 +153,7 @@ struct port_pre_exec_data {
int pipe_fd; int pipe_fd;
}; };
void port_pre_exec(void *arg) static void port_pre_exec(void *arg)
{ {
struct port_pre_exec_data *data = arg; struct port_pre_exec_data *data = arg;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment