diff options
author | Charles Clément <caratorn@gmail.com> | 2010-05-05 13:54:08 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-11 11:36:18 -0700 |
commit | 97b9e5ae4039ab32ea5fcef999f6e54ca4af5c94 (patch) | |
tree | 6c6809a33884ac6fa9fd6d3e59d8e3ce92e0eaee /drivers | |
parent | e5b3e80016198ee55c82dfd653c1dee99a38964b (diff) | |
download | linux-97b9e5ae4039ab32ea5fcef999f6e54ca4af5c94.tar.bz2 |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/crystalhd/crystalhd_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |