projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5b3e80
)
Staging: crystalhd: fix missing semicolon
author
Charles Clément
<caratorn@gmail.com>
Wed, 5 May 2010 20:54:08 +0000
(13:54 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 11 May 2010 18:36:18 +0000
(11:36 -0700)
A semicolon is missing at the end of a statement, but it does compile
fine without it as the macro BCMLOG_ERR expands to a do {...} while (0);
Signed-off-by: Charles Clément <caratorn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/crystalhd/crystalhd_cmds.c
patch
|
blob
|
history
diff --git
a/drivers/staging/crystalhd/crystalhd_cmds.c
b/drivers/staging/crystalhd/crystalhd_cmds.c
index d826715809df1d1f8abb34ce5c3055acd3f315e3..1a7ca8ba7f8531583bc07b6d4d2f817319fc7ed6 100644
(file)
--- a/
drivers/staging/crystalhd/crystalhd_cmds.c
+++ b/
drivers/staging/crystalhd/crystalhd_cmds.c
@@
-309,7
+309,7
@@
static BC_STATUS bc_cproc_download_fw(struct crystalhd_cmd *ctx,
idata->add_cdata_sz);
if (sts != BC_STS_SUCCESS) {
- BCMLOG_ERR("Firmware Download Failure!! - %d\n", sts)
+ BCMLOG_ERR("Firmware Download Failure!! - %d\n", sts)
;
} else
ctx->state |= BC_LINK_INIT;