Commit 483ce670 authored by Masami Hiramatsu's avatar Masami Hiramatsu Committed by Steven Rostedt (VMware)

tools/bootconfig: Make all functions static

Make all functions static except for main(). This is just a cleanup.

Link: https://lkml.kernel.org/r/159704850135.175360.12465608936326167517.stgit@devnote2Signed-off-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent e4f70b7b
...@@ -99,7 +99,7 @@ static void xbc_show_list(void) ...@@ -99,7 +99,7 @@ static void xbc_show_list(void)
} }
/* Simple real checksum */ /* Simple real checksum */
int checksum(unsigned char *buf, int len) static int checksum(unsigned char *buf, int len)
{ {
int i, sum = 0; int i, sum = 0;
...@@ -111,7 +111,7 @@ int checksum(unsigned char *buf, int len) ...@@ -111,7 +111,7 @@ int checksum(unsigned char *buf, int len)
#define PAGE_SIZE 4096 #define PAGE_SIZE 4096
int load_xbc_fd(int fd, char **buf, int size) static int load_xbc_fd(int fd, char **buf, int size)
{ {
int ret; int ret;
...@@ -128,7 +128,7 @@ int load_xbc_fd(int fd, char **buf, int size) ...@@ -128,7 +128,7 @@ int load_xbc_fd(int fd, char **buf, int size)
} }
/* Return the read size or -errno */ /* Return the read size or -errno */
int load_xbc_file(const char *path, char **buf) static int load_xbc_file(const char *path, char **buf)
{ {
struct stat stat; struct stat stat;
int fd, ret; int fd, ret;
...@@ -147,7 +147,7 @@ int load_xbc_file(const char *path, char **buf) ...@@ -147,7 +147,7 @@ int load_xbc_file(const char *path, char **buf)
return ret; return ret;
} }
int load_xbc_from_initrd(int fd, char **buf) static int load_xbc_from_initrd(int fd, char **buf)
{ {
struct stat stat; struct stat stat;
int ret; int ret;
...@@ -254,7 +254,7 @@ static int init_xbc_with_error(char *buf, int len) ...@@ -254,7 +254,7 @@ static int init_xbc_with_error(char *buf, int len)
return ret; return ret;
} }
int show_xbc(const char *path, bool list) static int show_xbc(const char *path, bool list)
{ {
int ret, fd; int ret, fd;
char *buf = NULL; char *buf = NULL;
...@@ -299,7 +299,7 @@ int show_xbc(const char *path, bool list) ...@@ -299,7 +299,7 @@ int show_xbc(const char *path, bool list)
return ret; return ret;
} }
int delete_xbc(const char *path) static int delete_xbc(const char *path)
{ {
struct stat stat; struct stat stat;
int ret = 0, fd, size; int ret = 0, fd, size;
...@@ -330,7 +330,7 @@ int delete_xbc(const char *path) ...@@ -330,7 +330,7 @@ int delete_xbc(const char *path)
return ret; return ret;
} }
int apply_xbc(const char *path, const char *xbc_path) static int apply_xbc(const char *path, const char *xbc_path)
{ {
u32 size, csum; u32 size, csum;
char *buf, *data; char *buf, *data;
...@@ -407,7 +407,7 @@ int apply_xbc(const char *path, const char *xbc_path) ...@@ -407,7 +407,7 @@ int apply_xbc(const char *path, const char *xbc_path)
return ret; return ret;
} }
int usage(void) static int usage(void)
{ {
printf("Usage: bootconfig [OPTIONS] <INITRD>\n" printf("Usage: bootconfig [OPTIONS] <INITRD>\n"
"Or bootconfig <CONFIG>\n" "Or bootconfig <CONFIG>\n"
......
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