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

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

soc: qcom: bam_dmux: Fix quoted strings



Quoted strings should not be split across lines per CodingStyle.  Fix the
non-compliant instances.

Change-Id: Iba2c1f354e180e1433af1abfed0da61c65e7c736
Signed-off-by: default avatarJeffrey Hugo <jhugo@codeaurora.org>
parent a3ef7afe
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -826,8 +826,8 @@ static void bam_mux_write_done(struct work_struct *work)
	if (unlikely(info != info_expected)) {
		struct tx_pkt_info *errant_pkt;

		DMUX_LOG_KERR("%s: bam_tx_pool mismatch .next=%p,"
				" list_node=%p, ts=%u.%09lu\n",
		DMUX_LOG_KERR(
				"%s: bam_tx_pool mismatch .next=%p, list_node=%p, ts=%u.%09lu\n",
				__func__, bam_tx_pool.next, &info->list_node,
				info->ts_sec, info->ts_nsec
				);
@@ -1503,8 +1503,8 @@ static void bam_mux_rx_notify(struct sps_event_notify *notify)
			ret = bam_ops->sps_get_config_ptr(bam_rx_pipe,
					&cur_rx_conn);
			if (ret) {
				pr_err("%s: sps_get_config() failed %d, interrupts"
					" not disabled\n", __func__, ret);
				pr_err("%s: sps_get_config() failed %d, interrupts not disabled\n",
					__func__, ret);
				break;
			}
			cur_rx_conn.options = SPS_O_AUTO_ENABLE |
@@ -1512,8 +1512,8 @@ static void bam_mux_rx_notify(struct sps_event_notify *notify)
			ret = bam_ops->sps_set_config_ptr(bam_rx_pipe,
					&cur_rx_conn);
			if (ret) {
				pr_err("%s: sps_set_config() failed %d, interrupts"
					" not disabled\n", __func__, ret);
				pr_err("%s: sps_set_config() failed %d, interrupts not disabled\n",
					__func__, ret);
				break;
			}
			reinit_completion(&shutdown_completion);