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

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
...@@ -266,15 +266,15 @@ int mgr_enum_processor_info(u32 processor_id, ...@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment