Fix typos (and nxstyle errors)

ReleaseNotes,
arch/arm/src/cxd56xx/cxd56_dmac_common.h,
arch/arm/src/efm32/efm32_dma.h,
arch/arm/src/lpc54xx/lpc54_lcd.c,
arch/arm/src/rp2040/rp2040_dmac.h,
arch/arm/src/stm32/stm32_dma.h,
arch/arm/src/stm32f0l0g0/stm32_dma.h,
arch/arm/src/stm32f7/stm32_dma.h,
arch/arm/src/stm32h7/stm32_dma.h,
arch/arm/src/stm32l4/stm32l4_dma.h,
arch/renesas/src/rx65n/rx65n_dtc.h,
fs/spiffs/src/spiffs_vfs.c,
net/route/cacheroute.h,
net/route/net_cacheroute.c,
net/route/net_foreach_fileroute.c,
net/route/net_foreach_ramroute.c,
net/route/net_foreach_romroute.c, and
net/route/route.h:

    * Fix the following typos:
      - remove spurious "are"
      - "tot he" -> "to the"

arch/arm/src/stm32f0l0g0/stm32_dma.h and
arch/arm/src/stm32l4/stm32l4_dma.h:

    * Fix nxstyle errors.
This commit is contained in:
Nathan Hartman
2021-03-21 13:07:36 -04:00
committed by Abdelatif Guettouche
parent 473bacd7a2
commit 4653dc14d3
18 changed files with 102 additions and 98 deletions

View File

@@ -16586,7 +16586,7 @@ detailed bugfix information):
script. From Mateusz Szafoni. script. From Mateusz Szafoni.
- Nucleo-F334R8: Add missing ram_vectors configuration in linker - Nucleo-F334R8: Add missing ram_vectors configuration in linker
script. From Mateusz Szafoni. script. From Mateusz Szafoni.
- Nucleo-F334R8: Add Missing ADC trigger configuration tot he highpri - Nucleo-F334R8: Add Missing ADC trigger configuration to the highpri
configuration. From Mateusz Szafoni. configuration. From Mateusz Szafoni.
- STM3240G-EVAL: The timer frequencies (BOARD_TIMx_FREQUENCY) are - STM3240G-EVAL: The timer frequencies (BOARD_TIMx_FREQUENCY) are
incorrectly defined in board.h. Since the APB prescalers are set to incorrectly defined in board.h. Since the APB prescalers are set to

View File

@@ -31,8 +31,8 @@
* Public Types * Public Types
****************************************************************************/ ****************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent /* DMA_HANDLE provides an opaque reference that can be used to represent a
* a DMA channel. * DMA channel.
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -42,7 +42,7 @@ typedef FAR void *DMA_HANDLE;
* completion of the DMA. * completion of the DMA.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. * status - A bit encoded value that provides the completion status.
* See the DMASTATUS_* definitions above. * See the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when cxd56_dmastart() * arg - A user-provided value that was provided when cxd56_dmastart()

View File

@@ -89,7 +89,7 @@
* Public Types * Public Types
************************************************************************************/ ************************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent a DMA /* DMA_HANDLE provides an opaque reference that can be used to represent a DMA
* channel. * channel.
*/ */
@@ -100,11 +100,11 @@ typedef FAR void *DMA_HANDLE;
* completion of the DMA. * completion of the DMA.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. See the * status - A bit encoded value that provides the completion status. See
* DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when efm32_dmastart() was * arg - A user-provided value that was provided when efm32_dmastart()
* called. * was called.
*/ */
typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg); typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg);

View File

@@ -5,7 +5,7 @@
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
* *
* This driver derives from the LPC1788 LCD driver. The LPC1788 LCD is * This driver derives from the LPC1788 LCD driver. The LPC1788 LCD is
* identical tot he LPC54628 LCD other than some minor clocking differences. * identical to the LPC54628 LCD other than some minor clocking differences.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions

View File

@@ -99,8 +99,8 @@ extern "C"
* Public Types * Public Types
****************************************************************************/ ****************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent /* DMA_HANDLE provides an opaque reference that can be used to represent a
* a DMA channel. * DMA channel.
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;

View File

@@ -72,8 +72,8 @@
* Public Types * Public Types
****************************************************************************/ ****************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent /* DMA_HANDLE provides an opaque reference that can be used to represent a
* a DMA channel (F1) or a DMA stream (F4). * DMA channel (F1) or a DMA stream (F4).
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -83,7 +83,7 @@ typedef FAR void *DMA_HANDLE;
* completion of the DMA. * completion of the DMA.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. See * status - A bit encoded value that provides the completion status. See
* the DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when stm32_dmastart() * arg - A user-provided value that was provided when stm32_dmastart()

View File

@@ -1,4 +1,4 @@
/************************************************************************************ /****************************************************************************
* arch/arm/src/stm32f0l0g0/stm32_dma.h * arch/arm/src/stm32f0l0g0/stm32_dma.h
* *
* Copyright (C) 2009, 2011-2013, 2018 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2011-2013, 2018 Gregory Nutt. All rights reserved.
@@ -31,26 +31,26 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
* *
************************************************************************************/ ****************************************************************************/
#ifndef __ARCH_ARM_SRC_STM32F0L0G0_STM32_DMA_H #ifndef __ARCH_ARM_SRC_STM32F0L0G0_STM32_DMA_H
#define __ARCH_ARM_SRC_STM32F0L0G0_STM32_DMA_H #define __ARCH_ARM_SRC_STM32F0L0G0_STM32_DMA_H
/************************************************************************************ /****************************************************************************
* Included Files * Included Files
************************************************************************************/ ****************************************************************************/
#include <nuttx/config.h> #include <nuttx/config.h>
#include <sys/types.h> #include <sys/types.h>
#include "hardware/stm32_dma_v1.h" #include "hardware/stm32_dma_v1.h"
/************************************************************************************ /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions
************************************************************************************/ ****************************************************************************/
/* These definitions provide the bit encoding of the 'status' parameter passed to the /* These definitions provide the bit encoding of the 'status' parameter
* DMA callback function (see dma_callback_t). * passed to the DMA callback function (see dma_callback_t).
*/ */
#define DMA_STATUS_TEIF DMA_CHAN_TEIF_BIT /* Channel Transfer Error */ #define DMA_STATUS_TEIF DMA_CHAN_TEIF_BIT /* Channel Transfer Error */
@@ -60,12 +60,12 @@
#define DMA_STATUS_ERROR (DMA_STATUS_TEIF) #define DMA_STATUS_ERROR (DMA_STATUS_TEIF)
#define DMA_STATUS_SUCCESS (DMA_STATUS_TCIF | DMA_STATUS_HTIF) #define DMA_STATUS_SUCCESS (DMA_STATUS_TCIF | DMA_STATUS_HTIF)
/************************************************************************************ /****************************************************************************
* Public Types * Public Types
************************************************************************************/ ****************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent a DMA /* DMA_HANDLE provides an opaque reference that can be used to represent a
* channel (F1) or a DMA stream (F4). * DMA channel (F1) or a DMA stream (F4).
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -75,11 +75,11 @@ typedef FAR void *DMA_HANDLE;
* completion of the DMA. * completion of the DMA.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. See the * status - A bit encoded value that provides the completion status. See
* DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when stm32_dmastart() was * arg - A user-provided value that was provided when stm32_dmastart()
* called. * was called.
*/ */
typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg); typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg);
@@ -95,9 +95,9 @@ struct stm32_dmaregs_s
}; };
#endif #endif
/************************************************************************************ /****************************************************************************
* Public Data * Public Data
************************************************************************************/ ****************************************************************************/
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
@@ -110,9 +110,9 @@ extern "C"
#define EXTERN extern #define EXTERN extern
#endif #endif
/************************************************************************************ /****************************************************************************
* Public Functions * Public Function Prototypes
************************************************************************************/ ****************************************************************************/
/**************************************************************************** /****************************************************************************
* Name: stm32_dmachannel * Name: stm32_dmachannel
@@ -159,11 +159,13 @@ DMA_HANDLE stm32_dmachannel(unsigned int chan);
* Name: stm32_dmafree * Name: stm32_dmafree
* *
* Description: * Description:
* Release a DMA channel. If another thread is waiting for this DMA channel * Release a DMA channel. If another thread is waiting for this DMA
* in a call to stm32_dmachannel, then this function will re-assign the * channel in a call to stm32_dmachannel, then this function will
* DMA channel to that thread and wake it up. NOTE: The 'handle' used * re-assign the DMA channel to that thread and wake it up.
* in this argument must NEVER be used again until stm32_dmachannel() is *
* called again to re-gain access to the channel. * NOTE: The 'handle' used in this argument must NEVER be used again
* until stm32_dmachannel() is called again to re-gain access to
* the channel.
* *
* Returned Value: * Returned Value:
* None * None
@@ -207,8 +209,8 @@ void stm32_dmastart(DMA_HANDLE handle, dma_callback_t callback, void *arg,
* *
* Description: * Description:
* Cancel the DMA. After stm32_dmastop() is called, the DMA channel is * Cancel the DMA. After stm32_dmastop() is called, the DMA channel is
* reset and stm32_dmasetup() must be called before stm32_dmastart() can be * reset and stm32_dmasetup() must be called before stm32_dmastart() can
* called again * be called again
* *
* Assumptions: * Assumptions:
* - DMA handle allocated by stm32_dmachannel() * - DMA handle allocated by stm32_dmachannel()
@@ -237,8 +239,8 @@ size_t stm32_dmaresidual(DMA_HANDLE handle);
* Check if the DMA controller can transfer data to/from given memory * Check if the DMA controller can transfer data to/from given memory
* address with the given configuration. This depends on the internal * address with the given configuration. This depends on the internal
* connections in the ARM bus matrix of the processor. Note that this * connections in the ARM bus matrix of the processor. Note that this
* only applies to memory addresses, it will return false for any peripheral * only applies to memory addresses, it will return false for any
* address. * peripheral address.
* *
* Returned Value: * Returned Value:
* True, if transfer is possible. * True, if transfer is possible.

View File

@@ -62,8 +62,8 @@
* Public Types * Public Types
****************************************************************************/ ****************************************************************************/
/* DMA_HANDLE Provides an opaque are reference that can be used to represent /* DMA_HANDLE Provides an opaque reference that can be used to represent a
* a DMA stream. * DMA stream.
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -75,7 +75,7 @@ typedef FAR void *DMA_HANDLE;
* invalidate DMA buffers after completion of the DMA RX operations. * invalidate DMA buffers after completion of the DMA RX operations.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. See * status - A bit encoded value that provides the completion status. See
* the DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when stm32_dmastart() * arg - A user-provided value that was provided when stm32_dmastart()

View File

@@ -84,8 +84,8 @@ struct stm32_dma_config_s
typedef struct stm32_dma_config_s stm32_dmacfg_t; typedef struct stm32_dma_config_s stm32_dmacfg_t;
/* DMA_HANDLE Provides an opaque are reference that can be used to represent /* DMA_HANDLE Provides an opaque reference that can be used to represent a
* a DMA stream. * DMA stream.
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -97,7 +97,7 @@ typedef FAR void *DMA_HANDLE;
* invalidate DMA buffers after completion of the DMA RX operations. * invalidate DMA buffers after completion of the DMA RX operations.
* *
* Input Parameters: * Input Parameters:
* handle - Refers tot he DMA channel or stream * handle - Refers to the DMA channel or stream
* status - A bit encoded value that provides the completion status. See * status - A bit encoded value that provides the completion status. See
* the DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when stm32_dmastart() * arg - A user-provided value that was provided when stm32_dmastart()

View File

@@ -1,4 +1,4 @@
/************************************************************************************ /****************************************************************************
* arch/arm/src/stm32l4/stm32l4_dma.h * arch/arm/src/stm32l4/stm32l4_dma.h
* *
* Copyright (C) 2009, 2011-2013 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2011-2013 Gregory Nutt. All rights reserved.
@@ -33,14 +33,14 @@
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
* *
************************************************************************************/ ****************************************************************************/
#ifndef __ARCH_ARM_SRC_STM32L4_STM32L4_DMA_H #ifndef __ARCH_ARM_SRC_STM32L4_STM32L4_DMA_H
#define __ARCH_ARM_SRC_STM32L4_STM32L4_DMA_H #define __ARCH_ARM_SRC_STM32L4_STM32L4_DMA_H
/************************************************************************************ /****************************************************************************
* Included Files * Included Files
************************************************************************************/ ****************************************************************************/
#include <nuttx/config.h> #include <nuttx/config.h>
#include <sys/types.h> #include <sys/types.h>
@@ -62,8 +62,8 @@
# error "Unsupported STM32L4 chip" # error "Unsupported STM32L4 chip"
#endif #endif
/* These definitions provide the bit encoding of the 'status' parameter passed to the /* These definitions provide the bit encoding of the 'status' parameter
* DMA callback function (see dma_callback_t). * passed to the DMA callback function (see dma_callback_t).
*/ */
# define DMA_STATUS_TEIF DMA_CHAN_TEIF_BIT /* Channel Transfer Error */ # define DMA_STATUS_TEIF DMA_CHAN_TEIF_BIT /* Channel Transfer Error */
@@ -73,12 +73,12 @@
#define DMA_STATUS_ERROR (DMA_STATUS_TEIF) #define DMA_STATUS_ERROR (DMA_STATUS_TEIF)
#define DMA_STATUS_SUCCESS (DMA_STATUS_TCIF|DMA_STATUS_HTIF) #define DMA_STATUS_SUCCESS (DMA_STATUS_TCIF|DMA_STATUS_HTIF)
/************************************************************************************ /****************************************************************************
* Public Types * Public Types
************************************************************************************/ ****************************************************************************/
/* DMA_HANDLE provides an opaque are reference that can be used to represent a DMA /* DMA_HANDLE provides an opaque reference that can be used to represent a
* channel. * DMA channel.
*/ */
typedef FAR void *DMA_HANDLE; typedef FAR void *DMA_HANDLE;
@@ -89,10 +89,10 @@ typedef FAR void *DMA_HANDLE;
* *
* Input Parameters: * Input Parameters:
* handle - Refers to the DMA channel * handle - Refers to the DMA channel
* status - A bit encoded value that provides the completion status. See the * status - A bit encoded value that provides the completion status. See
* DMASTATUS_* definitions above. * the DMASTATUS_* definitions above.
* arg - A user-provided value that was provided when stm32l4_dmastart() was * arg - A user-provided value that was provided when
* called. * stm32l4_dmastart() was called.
*/ */
typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg); typedef void (*dma_callback_t)(DMA_HANDLE handle, uint8_t status, void *arg);
@@ -122,9 +122,9 @@ struct stm32l4_dmaregs_s
}; };
#endif #endif
/************************************************************************************ /****************************************************************************
* Public Data * Public Data
************************************************************************************/ ****************************************************************************/
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
@@ -137,9 +137,9 @@ extern "C"
#define EXTERN extern #define EXTERN extern
#endif #endif
/************************************************************************************ /****************************************************************************
* Public Functions * Public Function Prototypes
************************************************************************************/ ****************************************************************************/
#if defined(CONFIG_STM32L4_STM32L4X3) || defined(CONFIG_STM32L4_STM32L4X5) || \ #if defined(CONFIG_STM32L4_STM32L4X3) || defined(CONFIG_STM32L4_STM32L4X5) || \
defined(CONFIG_STM32L4_STM32L4X6) defined(CONFIG_STM32L4_STM32L4X6)
@@ -154,12 +154,12 @@ extern "C"
* channel cannot do DMA concurrently! See the DMACHAN_* definitions in * channel cannot do DMA concurrently! See the DMACHAN_* definitions in
* stm32l4_dma.h. * stm32l4_dma.h.
* *
* If the DMA channel is not available, then stm32l4_dmachannel() will wait * If the DMA channel is not available, then stm32l4_dmachannel() will
* until the holder of the channel relinquishes the channel by calling * wait until the holder of the channel relinquishes the channel by
* stm32l4_dmafree(). WARNING: If you have two devices sharing a DMA * calling stm32l4_dmafree(). WARNING: If you have two devices sharing a
* channel and the code never releases the channel, the stm32l4_dmachannel * DMA channel and the code never releases the channel, the
* call for the other will hang forever in this function! Don't let your * stm32l4_dmachannel call for the other will hang forever in this
* design do that! * function! Don't let your design do that!
* *
* Hmm.. I suppose this interface could be extended to make a non-blocking * Hmm.. I suppose this interface could be extended to make a non-blocking
* version. Feel free to do that if that is what you need. * version. Feel free to do that if that is what you need.
@@ -195,8 +195,8 @@ DMA_HANDLE stm32l4_dmachannel(unsigned int chan);
* *
* Input Parameters: * Input Parameters:
* dmamap - Identifies the stream/channel resource. For the STM32L4+, this * dmamap - Identifies the stream/channel resource. For the STM32L4+, this
* is a bit-encoded value as provided by the DMAMAP_* definitions * is a bit-encoded value as provided by the DMAMAP_* definitions in
* in hardware/stm32l4xrxx_dmamux.h * hardware/stm32l4xrxx_dmamux.h
* *
* Returned Value: * Returned Value:
* One success, this function returns a non-NULL, void* DMA channel * One success, this function returns a non-NULL, void* DMA channel
@@ -218,11 +218,13 @@ DMA_HANDLE stm32l4_dmachannel(unsigned int dmamap);
* Name: stm32l4_dmafree * Name: stm32l4_dmafree
* *
* Description: * Description:
* Release a DMA channel. If another thread is waiting for this DMA channel * Release a DMA channel. If another thread is waiting for this DMA
* in a call to stm32l4_dmachannel, then this function will re-assign the * channel in a call to stm32l4_dmachannel, then this function will
* DMA channel to that thread and wake it up. NOTE: The 'handle' used * re-assign the DMA channel to that thread and wake it up.
* in this argument must NEVER be used again until stm32l4_dmachannel() is *
* called again to re-gain access to the channel. * NOTE: The 'handle' used in this argument must NEVER be used again
* until stm32l4_dmachannel() is called again to re-gain access to
* the channel.
* *
* Returned Value: * Returned Value:
* None * None
@@ -266,8 +268,8 @@ void stm32l4_dmastart(DMA_HANDLE handle, dma_callback_t callback, void *arg,
* *
* Description: * Description:
* Cancel the DMA. After stm32l4_dmastop() is called, the DMA channel is * Cancel the DMA. After stm32l4_dmastop() is called, the DMA channel is
* reset and stm32l4_dmasetup() must be called before stm32l4_dmastart() can be * reset and stm32l4_dmasetup() must be called before stm32l4_dmastart()
* called again * can be called again
* *
* Assumptions: * Assumptions:
* - DMA handle allocated by stm32l4_dmachannel() * - DMA handle allocated by stm32l4_dmachannel()
@@ -296,8 +298,8 @@ size_t stm32l4_dmaresidual(DMA_HANDLE handle);
* Check if the DMA controller can transfer data to/from given memory * Check if the DMA controller can transfer data to/from given memory
* address with the given configuration. This depends on the internal * address with the given configuration. This depends on the internal
* connections in the ARM bus matrix of the processor. Note that this * connections in the ARM bus matrix of the processor. Note that this
* only applies to memory addresses, it will return false for any peripheral * only applies to memory addresses, it will return false for any
* address. * peripheral address.
* *
* Returned Value: * Returned Value:
* True, if transfer is possible. * True, if transfer is possible.

View File

@@ -38,8 +38,8 @@
* Public Types * Public Types
****************************************************************************/ ****************************************************************************/
/* DTC_HANDLE provides an opaque are reference that can be used to represent /* DTC_HANDLE provides an opaque reference that can be used to represent a
* a DTC channel. * DTC channel.
*/ */
typedef FAR void *DTC_HANDLE; typedef FAR void *DTC_HANDLE;

View File

@@ -1016,7 +1016,7 @@ static int spiffs_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
return ret; return ret;
} }
/* Handle the IOCTL according tot he command */ /* Handle the IOCTL according to the command */
switch (cmd) switch (cmd)
{ {

View File

@@ -85,7 +85,7 @@ int net_addcache_ipv6(FAR struct net_route_ipv6_s *route);
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table cache. * handler - Will be called for each route in the routing table cache.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was searched. A negated errno * Zero (OK) returned if the entire table was searched. A negated errno

View File

@@ -678,7 +678,7 @@ int net_addcache_ipv6(FAR struct net_route_ipv6_s *route)
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table cache. * handler - Will be called for each route in the routing table cache.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was searched. A negated errno * Zero (OK) returned if the entire table was searched. A negated errno

View File

@@ -48,7 +48,7 @@
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table. * handler - Will be called for each route in the routing table.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was search. A negated errno * Zero (OK) returned if the entire table was search. A negated errno

View File

@@ -48,7 +48,7 @@
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table. * handler - Will be called for each route in the routing table.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was search. A negated errno * Zero (OK) returned if the entire table was search. A negated errno

View File

@@ -43,7 +43,7 @@
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table. * handler - Will be called for each route in the routing table.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was search. A negated errno * Zero (OK) returned if the entire table was search. A negated errno

View File

@@ -256,7 +256,7 @@ void netdev_ipv6_router(FAR struct net_driver_s *dev,
* *
* Input Parameters: * Input Parameters:
* handler - Will be called for each route in the routing table. * handler - Will be called for each route in the routing table.
* arg - An arbitrary value that will be passed tot he handler. * arg - An arbitrary value that will be passed to the handler.
* *
* Returned Value: * Returned Value:
* Zero (OK) returned if the entire table was searched. A negated errno * Zero (OK) returned if the entire table was searched. A negated errno