soc: xilinx: fix quoted string split across lines
Fix checkpatch warning "quoted string split across lines". No functional change. Signed-off-by: Michal Simek <michal.simek@amd.com> Signed-off-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com> Link: https://lore.kernel.org/r/1698430295-2731040-1-git-send-email-radhey.shyam.pandey@amd.com
This commit is contained in:
committed by
Michal Simek
parent
daed80ed07
commit
4c0afac2df
@@ -83,8 +83,8 @@ static irqreturn_t zynqmp_pm_isr(int irq, void *data)
|
||||
pm_suspend(PM_SUSPEND_MEM);
|
||||
break;
|
||||
default:
|
||||
pr_err("%s Unsupported InitSuspendCb reason "
|
||||
"code %d\n", __func__, payload[1]);
|
||||
pr_err("%s Unsupported InitSuspendCb reason code %d\n",
|
||||
__func__, payload[1]);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -252,8 +252,8 @@ static int zynqmp_pm_probe(struct platform_device *pdev)
|
||||
dev_name(&pdev->dev),
|
||||
&pdev->dev);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "devm_request_threaded_irq '%d' "
|
||||
"failed with %d\n", irq, ret);
|
||||
dev_err(&pdev->dev, "devm_request_threaded_irq '%d' failed with %d\n",
|
||||
irq, ret);
|
||||
return ret;
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user