Run all .c and .h files in PR235 through tools/nxstyle.

This commit is contained in:
Gregory Nutt
2020-02-09 07:32:52 -06:00
parent ac53600e44
commit 934f468e4a
4 changed files with 11 additions and 10 deletions
+3 -6
View File
@@ -408,16 +408,13 @@ SYSCALL_LOOKUP(up_assert, 2, STUB_up_assert)
#endif
/* The following is defined only if entropy pool random number generator
* is enabled. */
* is enabled.
*/
#ifdef CONFIG_CRYPTO_RANDOM_POOL
SYSCALL_LOOKUP(getrandom, 2, STUB_getrandom)
#endif
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
* Public Functions
* Public Function Prototypes
****************************************************************************/
+2 -1
View File
@@ -426,7 +426,8 @@ uintptr_t STUB_prctl(int nbr, uintptr_t parm1, uintptr_t parm2,
uintptr_t parm3, uintptr_t parm4, uintptr_t parm5);
/* The following is defined only if entropy pool random number generator
* is enabled. */
* is enabled.
*/
uintptr_t STUB_getrandom(int nbr, uintptr_t parm1, uintptr_t parm2);