Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 97b9e5ae authored by Charles Clément's avatar Charles Clément Committed by Greg Kroah-Hartman
Browse files

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: default avatarCharles Clément <caratorn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e5b3e800
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;