From 07467e509b90c75a7c5962c0857857eae79e5c33 Mon Sep 17 00:00:00 2001 From: Vincent Heuken Date: Tue, 3 Jun 2014 05:41:33 -0700 Subject: [PATCH] Staging: dgnc: fixed brace coding style issue in dgnc_driver.c This is a patch to the dgnc_driver.c file that fixes the following error: ERROR: open brace '{' following function declarations go on the next line Signed-off-by: Vincent Heuken Signed-off-by: Greg Kroah-Hartman --- drivers/staging/dgnc/dgnc_driver.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/dgnc/dgnc_driver.c b/drivers/staging/dgnc/dgnc_driver.c index 5af8300dfb0d..d52a9e84bd9d 100644 --- a/drivers/staging/dgnc/dgnc_driver.c +++ b/drivers/staging/dgnc/dgnc_driver.c @@ -710,7 +710,8 @@ failed: } -static int dgnc_finalize_board_init(struct dgnc_board *brd) { +static int dgnc_finalize_board_init(struct dgnc_board *brd) +{ int rc = 0; DPR_INIT(("dgnc_finalize_board_init() - start\n")); -- 2.34.1