Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

remoteproc/ste: add blank lines after declarations

Fix couple of checkpatch warnings of the type,
"WARNING: Missing a blank line after declarations"

Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Ohad Ben-Cohen <ohad@wizery.com>

authored by

Suman Anna and committed by
Ohad Ben-Cohen
9aa1cfca b787f68c

+2 -2
+2 -2
drivers/remoteproc/ste_modem_rproc.c
··· 67 67 static const struct ste_toc_entry *sproc_find_rsc_entry(const void *data) 68 68 { 69 69 int i; 70 - const struct ste_toc *toc; 71 - toc = data; 70 + const struct ste_toc *toc = data; 72 71 73 72 /* Search the table for the resource table */ 74 73 for (i = 0; i < SPROC_MAX_TOC_ENTRIES && ··· 229 230 static int sproc_stop(struct rproc *rproc) 230 231 { 231 232 struct sproc *sproc = rproc->priv; 233 + 232 234 sproc_dbg(sproc, "stop ste-modem\n"); 233 235 234 236 return sproc->mdev->ops.power(sproc->mdev, false);