diff options
author | Marek Vasut | 2013-08-27 23:32:37 +0200 |
---|---|---|
committer | Stefano Babic | 2013-08-31 15:28:11 +0200 |
commit | 62d40d14c4368593b0b1afdff8f008b260497a58 (patch) | |
tree | 5477183c2a9dfcde98ebf07d81e3bf410cba5e7f /tools/mxsboot.c | |
parent | a5f746f3a27dd19b2180dfa79ca929c80ea80784 (diff) |
tools: mxsboot: Staticize functions
Make remaining non-static functions static and the same for vars.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <fabio.estevam@freescale.com>
Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'tools/mxsboot.c')
-rw-r--r-- | tools/mxsboot.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/mxsboot.c b/tools/mxsboot.c index 3d9cc10f0fa..1060cbf605f 100644 --- a/tools/mxsboot.c +++ b/tools/mxsboot.c @@ -28,14 +28,14 @@ * * TWEAK this if you have different kind of NAND chip. */ -uint32_t nand_writesize = 2048; -uint32_t nand_oobsize = 64; -uint32_t nand_erasesize = 128 * 1024; +static uint32_t nand_writesize = 2048; +static uint32_t nand_oobsize = 64; +static uint32_t nand_erasesize = 128 * 1024; /* * Sector on which the SigmaTel boot partition (0x53) starts. */ -uint32_t sd_sector = 2048; +static uint32_t sd_sector = 2048; /* * Each of the U-Boot bootstreams is at maximum 1MB big. @@ -434,7 +434,7 @@ static int mx28_nand_write_firmware(struct mx28_nand_fcb *fcb, int infd, return 0; } -void usage(void) +static void usage(void) { printf( "Usage: mxsboot [ops] <type> <infile> <outfile>\n" @@ -575,7 +575,7 @@ err0: return ret; } -int parse_ops(int argc, char **argv) +static int parse_ops(int argc, char **argv) { int i; int tmp; |