Skip to content

Commit

Permalink
Staging: crystalhd: fix missing semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Charles Clément authored and Greg Kroah-Hartman committed May 11, 2010
1 parent e5b3e80 commit 97b9e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/crystalhd/crystalhd_cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 97b9e5a

Please sign in to comment.