Staging: crystalhd: fix missing semicolon

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>
This commit is contained in:
Charles Clément 2010-05-05 13:54:08 -07:00 committed by Greg Kroah-Hartman
parent e5b3e80016
commit 97b9e5ae40
1 changed files with 1 additions and 1 deletions

View File

@ -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;