1
0
Fork 0
forked from nuttx/nuttx-update

net/icmp: fix typo timout -> timeout

Signed-off-by: chao an <anchao@lixiang.com>
This commit is contained in:
chao an 2024-12-17 15:50:37 +08:00 committed by Xiang Xiao
parent 86ffd45707
commit 4793407b67
4 changed files with 4 additions and 4 deletions

View file

@ -566,7 +566,7 @@ Drivers With Improvements
* [#10778](https://github.com/apache/nuttx/pull/10778) mmcsd: add get emmc cid register interface.
* [#10168](https://github.com/apache/nuttx/pull/10168) mmcsd: fix byte_block_count error in byte mode
* [#10440](https://github.com/apache/nuttx/pull/10440) mmcsd: fix regression causing emmcsd not working
* [#9937](https://github.com/apache/nuttx/pull/9937) mmcsd: mmcsd_sdio: config timout to write one data block
* [#9937](https://github.com/apache/nuttx/pull/9937) mmcsd: mmcsd_sdio: config timeout to write one data block
* [#10560](https://github.com/apache/nuttx/pull/10560) mmcsd: Rename mmc_rpmb_frame_s to rpmb_frame
* [#10732](https://github.com/apache/nuttx/pull/10732) mmcsd: support dump cid and csd with mmc-utils
* [#10672](https://github.com/apache/nuttx/pull/10672) mmcsd: update cid reg layout

View file

@ -1371,7 +1371,7 @@ static int sam_dma_setup(struct uart_dev_s *dev)
sam_dmastart_circular(priv->rxdma, sam_dma_rxcallback, (void *)dev);
/* Use defined timout to check if RX bus is in idle state */
/* Use defined timeout to check if RX bus is in idle state */
sam_serialout(priv, SAM_UART_RTOR_OFFSET,
CONFIG_SAMV7_SERIAL_DMA_TIMEOUT);

View file

@ -32,7 +32,7 @@ config NET_ICMP_PMTU_TIMEOUT
default 10
depends on NET_ICMP_PMTU_ENTRIES != 0
---help---
The timout of the ICMP pmtu entry
The timeout of the ICMP pmtu entry
config NET_ICMP_SOCKET
bool "IPPROTO_ICMP socket support"

View file

@ -34,7 +34,7 @@ config NET_ICMPv6_PMTU_TIMEOUT
default 10
depends on NET_ICMPv6_PMTU_ENTRIES != 0
---help---
The timout of the ICMPv6 pmtu entry
The timeout of the ICMPv6 pmtu entry
config NET_ICMPv6_SOCKET
bool "IPPROTO_ICMP6 socket support"