diff options
author | Suman Anna <s-anna@ti.com> | 2015-02-27 18:18:22 -0500 |
---|---|---|
committer | Ohad Ben-Cohen <ohad@wizery.com> | 2015-05-02 04:04:56 -0400 |
commit | e17aee37a68b3884114f515df3ee506870f5eea1 (patch) | |
tree | b955d7b1df45a8102dc57ea8be0ea6bacea0ea8e | |
parent | 9aa1cfca255bf3ba83f44b3452d34cc34607b94a (diff) |
remoteproc/davinci: fix quoted split string checkpatch warning
Fix the following checkpatch warning,
WARNING: quoted string split across lines
+ "\n\t\tName of DSP firmware file in /lib/firmware"
+ " (if not specified defaults to 'rproc-dsp-fw')");
Signed-off-by: Suman Anna <s-anna@ti.com>
[remove leading whitespace as well]
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
-rw-r--r-- | drivers/remoteproc/da8xx_remoteproc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/remoteproc/da8xx_remoteproc.c b/drivers/remoteproc/da8xx_remoteproc.c index f8d6a0661c14..009e56f67de2 100644 --- a/drivers/remoteproc/da8xx_remoteproc.c +++ b/drivers/remoteproc/da8xx_remoteproc.c | |||
@@ -26,8 +26,7 @@ | |||
26 | static char *da8xx_fw_name; | 26 | static char *da8xx_fw_name; |
27 | module_param(da8xx_fw_name, charp, S_IRUGO); | 27 | module_param(da8xx_fw_name, charp, S_IRUGO); |
28 | MODULE_PARM_DESC(da8xx_fw_name, | 28 | MODULE_PARM_DESC(da8xx_fw_name, |
29 | "\n\t\tName of DSP firmware file in /lib/firmware" | 29 | "Name of DSP firmware file in /lib/firmware (if not specified defaults to 'rproc-dsp-fw')"); |
30 | " (if not specified defaults to 'rproc-dsp-fw')"); | ||
31 | 30 | ||
32 | /* | 31 | /* |
33 | * OMAP-L138 Technical References: | 32 | * OMAP-L138 Technical References: |