diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bedbug.c | 4 | ||||
-rw-r--r-- | cmd/cramfs.c | 2 | ||||
-rw-r--r-- | cmd/pvblock.c | 1 | ||||
-rw-r--r-- | cmd/scp03.c | 1 | ||||
-rw-r--r-- | cmd/smccc.c | 1 | ||||
-rw-r--r-- | cmd/spi.c | 6 |
6 files changed, 4 insertions, 11 deletions
diff --git a/cmd/bedbug.c b/cmd/bedbug.c index 549c9056ddc..0bd67fcf47c 100644 --- a/cmd/bedbug.c +++ b/cmd/bedbug.c @@ -39,7 +39,6 @@ int bedbug_puts (const char *str) } /* bedbug_puts */ - /* ====================================================================== * Initialize the bug_ctx structure used by the bedbug debugger. This is * specific to the CPU since each has different debug registers and @@ -53,7 +52,6 @@ int bedbug_init(void) } /* bedbug_init */ - /* ====================================================================== * Entry point from the interpreter to the disassembler. Repeated calls * will resume from the last disassembled address. @@ -183,7 +181,6 @@ void do_bedbug_breakpoint (struct pt_regs *regs) } /* do_bedbug_breakpoint */ - /* ====================================================================== * Called from the CPU-specific breakpoint handling routine. Enter a * mini main loop until the stopped flag is cleared from the breakpoint @@ -241,7 +238,6 @@ void bedbug_main_loop (unsigned long addr, struct pt_regs *regs) } /* bedbug_main_loop */ - /* ====================================================================== * Interpreter command to continue from a breakpoint. Just clears the * stopped flag in the context so that the breakpoint routine will diff --git a/cmd/cramfs.c b/cmd/cramfs.c index 44c0818d5d4..d79292bad55 100644 --- a/cmd/cramfs.c +++ b/cmd/cramfs.c @@ -3,7 +3,7 @@ * * based on: cmd_jffs2.c * - * Add support for a CRAMFS located in RAM + * Add support for a CRAMFS located in RAM */ diff --git a/cmd/pvblock.c b/cmd/pvblock.c index 4e99b06122b..56ce8b18d51 100644 --- a/cmd/pvblock.c +++ b/cmd/pvblock.c @@ -27,4 +27,3 @@ U_BOOT_CMD(pvblock, 5, 1, do_pvblock, "pvblock write addr blk# cnt - read/write `cnt'" " blocks starting at block `blk#'\n" " to/from memory address `addr'"); - diff --git a/cmd/scp03.c b/cmd/scp03.c index 655e0bba08b..216c942dd48 100644 --- a/cmd/scp03.c +++ b/cmd/scp03.c @@ -49,4 +49,3 @@ static char text[] = U_BOOT_CMD_WITH_SUBCMDS(scp03, "Secure Channel Protocol 03 control", text, U_BOOT_SUBCMD_MKENT(enable, 1, 1, do_scp03_enable), U_BOOT_SUBCMD_MKENT(provision, 1, 1, do_scp03_provision)); - diff --git a/cmd/smccc.c b/cmd/smccc.c index f5271817729..0539a42587e 100644 --- a/cmd/smccc.c +++ b/cmd/smccc.c @@ -69,4 +69,3 @@ U_BOOT_CMD( " - id Session ID, passed to W7 (defaults to zero)\n" ); #endif - diff --git a/cmd/spi.c b/cmd/spi.c index bdbdbacecd9..6dc32678da1 100644 --- a/cmd/spi.c +++ b/cmd/spi.c @@ -29,9 +29,9 @@ static unsigned int bus; static unsigned int cs; static unsigned int mode; static unsigned int freq; -static int bitlen; -static uchar dout[MAX_SPI_BYTES]; -static uchar din[MAX_SPI_BYTES]; +static int bitlen; +static uchar dout[MAX_SPI_BYTES]; +static uchar din[MAX_SPI_BYTES]; static int do_spi_xfer(int bus, int cs) { |