[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1423168225-641-1-git-send-email-pierrechevalier83@gmail.com>
Date: Thu, 5 Feb 2015 20:30:25 +0000
From: Pierre Chevalier <pierrechevalier83@...il.com>
To: rth@...ddle.net
Cc: linux-alpha@...r.kernel.org, linux-kernel@...r.kernel.org,
Pierre Chevalier <pierrechevalier83@...il.com>
Subject: [PATCH] Arch: alpha: boot: fixed a brace coding style issue
Fixed a coding style issue.
Signed-off-by: Pierre Chevalier <pierrechevalier83@...il.com>
---
arch/alpha/boot/bootp.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/alpha/boot/bootp.c b/arch/alpha/boot/bootp.c
index 2a542a5..c2b3bce 100644
--- a/arch/alpha/boot/bootp.c
+++ b/arch/alpha/boot/bootp.c
@@ -177,9 +177,8 @@ start_kernel(void)
move_stack(initrd_start - PAGE_SIZE);
nbytes = callback_getenv(ENV_BOOTED_OSFLAGS, envval, sizeof(envval));
- if (nbytes < 0 || nbytes >= sizeof(envval)) {
+ if (nbytes < 0 || nbytes >= sizeof(envval))
nbytes = 0;
- }
envval[nbytes] = '\0';
srm_printk("Loading the kernel...'%s'\n", envval);
--
2.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists