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

Commit ba46b052 authored by Aybuke Ozdemir's avatar Aybuke Ozdemir Committed by Greg Kroah-Hartman
Browse files

staging/tidspbridge/rmgr/mgr.c Fix quoted string split across lines



This patch fixes "quoted string split across lines warning"
warning in mgr.c

Signed-off-by: default avatarAybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5f830a52
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -266,15 +266,15 @@ int mgr_enum_processor_info(u32 processor_id,
			 * this is a clumsy overwrite */
			 * this is a clumsy overwrite */
			processor_info->processor_type = DSPTYPE64;
			processor_info->processor_type = DSPTYPE64;
		} else {
		} else {
			dev_dbg(bridge, "%s: Failed to get DCD processor info "
			dev_dbg(bridge, "%s: Failed to get DCD processor info %x\n",
				"%x\n", __func__, status2);
					__func__, status2);
			status = -EPERM;
			status = -EPERM;
		}
		}
	}
	}
	*pu_num_procs = proc_index;
	*pu_num_procs = proc_index;
	if (proc_detect == false) {
	if (proc_detect == false) {
		dev_dbg(bridge, "%s: Failed to get proc info from DCD, so use "
		dev_dbg(bridge, "%s: Failed to get proc info from DCD, so use CFG registry\n",
			"CFG registry\n", __func__);
				__func__);
		processor_info->processor_type = DSPTYPE64;
		processor_info->processor_type = DSPTYPE64;
	}
	}
func_end:
func_end: