From: Charles Clément Date: Wed, 5 May 2010 20:54:08 +0000 (-0700) Subject: Staging: crystalhd: fix missing semicolon X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=97b9e5ae4039ab32ea5fcef999f6e54ca4af5c94;p=deliverable%2Flinux.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/crystalhd/crystalhd_cmds.c b/drivers/staging/crystalhd/crystalhd_cmds.c index d826715809df..1a7ca8ba7f85 100644 --- 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;