aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/remoteproc/remoteproc_internal.h
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2013-06-30 11:33:05 +0300
committerOhad Ben-Cohen <ohad@wizery.com>2013-06-30 11:33:05 +0300
commit57971159208757a37d44356764911703468a7ca3 (patch)
tree99f3cec367f5652ed8b41ce81f1591914b8197e4 /drivers/remoteproc/remoteproc_internal.h
parentremoteproc: fix error return code in rproc_fw_boot() (diff)
downloadlinux-dev-57971159208757a37d44356764911703468a7ca3.tar.xz
linux-dev-57971159208757a37d44356764911703468a7ca3.zip
remoteproc: fix checkpatch errors in remoteproc code
This patch fixes relevant checkpatch errors and warnings in the remoteproc source files. Signed-off-by: Suman Anna <s-anna@ti.com> [drop 80-char-lines checkpatch fixes and update commit log accordingly] Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>
Diffstat (limited to 'drivers/remoteproc/remoteproc_internal.h')
-rw-r--r--drivers/remoteproc/remoteproc_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/remoteproc/remoteproc_internal.h b/drivers/remoteproc/remoteproc_internal.h
index 157e762c1571..70701a50ddfa 100644
--- a/drivers/remoteproc/remoteproc_internal.h
+++ b/drivers/remoteproc/remoteproc_internal.h
@@ -107,12 +107,12 @@ struct resource_table *rproc_find_rsc_table(struct rproc *rproc,
static inline
struct resource_table *rproc_find_loaded_rsc_table(struct rproc *rproc,
- const struct firmware *fw)
+ const struct firmware *fw)
{
if (rproc->fw_ops->find_loaded_rsc_table)
return rproc->fw_ops->find_loaded_rsc_table(rproc, fw);
- return NULL;
+ return NULL;
}
extern const struct rproc_fw_ops rproc_elf_fw_ops;