]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
Staging: crystalhd: fix missing semicolon
authorCharles Clément <caratorn@gmail.com>
Wed, 5 May 2010 20:54:08 +0000 (13:54 -0700)
committerGreg 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

index d826715809df1d1f8abb34ce5c3055acd3f315e3..1a7ca8ba7f8531583bc07b6d4d2f817319fc7ed6 100644 (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;