include: nuttx: lib: nxstyle fixes

Nxstyle fixes to pass CI

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea 2021-01-26 11:33:08 +01:00 committed by Xiang Xiao
parent 785cb0dffe
commit 95ed9fc576
3 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,8 @@
* Copyright (C) 2012, 2016 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Reference: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/float.h.html
* Reference:
* http://pubs.opengroup.org/onlinepubs/009695399/basedefs/float.h.html
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions

View File

@ -198,7 +198,8 @@ void usub64(FAR const struct uint64_s *minuend,
*
****************************************************************************/
void umul32(uint32_t factor1, uint32_t factor2, FAR struct uint64_s *product);
void umul32(uint32_t factor1, uint32_t factor2,
FAR struct uint64_s *product);
/****************************************************************************
* Name: umul32x64

View File

@ -155,7 +155,9 @@ struct mod_info_s
typedef CODE int (*mod_initializer_t)(FAR struct mod_info_s *modinfo);
/* This is the type of the callback function used by modlib_registry_foreach() */
/* This is the type of the callback function used by
* modlib_registry_foreach()
*/
struct module_s;
typedef CODE int (*mod_callback_t)(FAR struct module_s *modp, FAR void *arg);