1
0
Fork 0

remoteproc/omap: fix various code formatting issues

This patch fixes some of the existing checkpatch warnings in OMAP
remoteproc code. The fixes are to the following warnings:
1. WARNING: missing space after return type
2. WARNING: Unnecessary space after function pointer name
3. CHECK: Alignment should match open parenthesis

Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
hifive-unleashed-5.1
Anna, Suman 2016-08-12 18:42:22 -05:00 committed by Bjorn Andersson
parent 9d7814a9a4
commit 334765f45b
2 changed files with 4 additions and 4 deletions

View File

@ -196,7 +196,7 @@ static int omap_rproc_probe(struct platform_device *pdev)
} }
rproc = rproc_alloc(&pdev->dev, pdata->name, &omap_rproc_ops, rproc = rproc_alloc(&pdev->dev, pdata->name, &omap_rproc_ops,
pdata->firmware, sizeof(*oproc)); pdata->firmware, sizeof(*oproc));
if (!rproc) if (!rproc)
return -ENOMEM; return -ENOMEM;

View File

@ -39,9 +39,9 @@ struct omap_rproc_pdata {
const char *firmware; const char *firmware;
const char *mbox_name; const char *mbox_name;
const struct rproc_ops *ops; const struct rproc_ops *ops;
int (*device_enable) (struct platform_device *pdev); int (*device_enable)(struct platform_device *pdev);
int (*device_shutdown) (struct platform_device *pdev); int (*device_shutdown)(struct platform_device *pdev);
void(*set_bootaddr)(u32); void (*set_bootaddr)(u32);
}; };
#if defined(CONFIG_OMAP_REMOTEPROC) || defined(CONFIG_OMAP_REMOTEPROC_MODULE) #if defined(CONFIG_OMAP_REMOTEPROC) || defined(CONFIG_OMAP_REMOTEPROC_MODULE)