From: Rick Chen Date: Mon, 12 Feb 2018 03:21:28 +0000 (+0800) Subject: riscv: checkpatch: Fix missing a blank line after declarations X-Git-Tag: v2018.05-rc1~4^2~16 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b9076495db36feb862401696c587afd2ffa5a5af;p=u-boot 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 Signed-off-by: Rick Chen --- diff --git a/arch/riscv/lib/bootm.c b/arch/riscv/lib/bootm.c index 44ce38b614..3744073cfa 100644 --- a/arch/riscv/lib/bootm.c +++ b/arch/riscv/lib/bootm.c @@ -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;