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

Commit 0a098209 authored by Jeff Hugo's avatar Jeff Hugo Committed by Arun Kumar Neelakantam
Browse files

soc: qcom: bam_dmux: Remove extra braces



CodingStyle indicates that single statement if blocks should not be
enclosed in braces.  Remove extra braces per CodingStyle.

Change-Id: I2d204277961a15e6d7d71205fa2941c59a98bdf9
Signed-off-by: default avatarJeff Hugo <jhugo@codeaurora.org>
parent 045089ee
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -2825,9 +2825,8 @@ static int __init bam_dmux_init(void)

	bam_ipc_log_txt = ipc_log_context_create(BAM_IPC_LOG_PAGES, "bam_dmux",
			0);
	if (!bam_ipc_log_txt) {
	if (!bam_ipc_log_txt)
		pr_err("%s : unable to create IPC Logging Context", __func__);
	}

	rx_timer_interval = DEFAULT_POLLING_MIN_SLEEP;