mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
riscv: checkpatch: Fix missing a blank line after declarations
It is reported by checkpatch.pl WARNING: Missing a blank line after declarations. Signed-off-by: Rick Chen <rick@andestech.com> Signed-off-by: Rick Chen <rickchen36@gmail.com>
This commit is contained in:
parent
45fc937576
commit
b9076495db
1 changed files with 2 additions and 2 deletions
|
|
@ -210,9 +210,9 @@ static void setup_initrd_tag(bd_t *bd, ulong initrd_start, ulong initrd_end)
|
|||
#ifdef CONFIG_SERIAL_TAG
|
||||
void setup_serial_tag(struct tag **tmp)
|
||||
{
|
||||
void get_board_serial(struct tag_serialnr *serialnr);
|
||||
struct tag *params;
|
||||
struct tag_serialnr serialnr;
|
||||
void get_board_serial(struct tag_serialnr *serialnr);
|
||||
|
||||
params = *tmp;
|
||||
get_board_serial(&serialnr);
|
||||
|
|
@ -228,8 +228,8 @@ void setup_serial_tag(struct tag **tmp)
|
|||
#ifdef CONFIG_REVISION_TAG
|
||||
void setup_revision_tag(struct tag **in_params)
|
||||
{
|
||||
u32 rev;
|
||||
u32 get_board_rev(void);
|
||||
u32 rev;
|
||||
|
||||
rev = get_board_rev();
|
||||
params->hdr.tag = ATAG_REVISION;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue