Minor style cleanup

Resolve an assortment of style inconsistencies including
use of white space, typos, capitalization, and line wrapping.
There is no functional change.

Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #9030
This commit is contained in:
Brian Behlendorf
2019-07-16 17:22:31 -07:00
committed by Tony Hutter
parent 446d08fba4
commit 984bfb373f
9 changed files with 57 additions and 42 deletions
+2 -1
View File
@@ -153,8 +153,9 @@ spl_kthread_create(int (*func)(void *), void *data, const char namefmt[], ...)
if (PTR_ERR(tsk) == -ENOMEM)
continue;
return (NULL);
} else
} else {
return (tsk);
}
} while (1);
}
EXPORT_SYMBOL(spl_kthread_create);