diff --git a/include/nuttx/lib/float.h b/include/nuttx/lib/float.h index a3ef2d297b..d9b0a3fedf 100644 --- a/include/nuttx/lib/float.h +++ b/include/nuttx/lib/float.h @@ -4,7 +4,8 @@ * Copyright (C) 2012, 2016 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * - * 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 diff --git a/include/nuttx/lib/math32.h b/include/nuttx/lib/math32.h index ba70f3184d..a62c3d577c 100644 --- a/include/nuttx/lib/math32.h +++ b/include/nuttx/lib/math32.h @@ -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 diff --git a/include/nuttx/lib/modlib.h b/include/nuttx/lib/modlib.h index 1460fff56f..d76dfee0e1 100644 --- a/include/nuttx/lib/modlib.h +++ b/include/nuttx/lib/modlib.h @@ -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);