diff mbox series

[net-next,01/12] can: gw: fix typo

Message ID 20210127092227.2775573-2-mkl@pengutronix.de (mailing list archive)
State Accepted
Commit 12da7a1f3cb6ec5c8a1256bbc17cc931f72f7329
Delegated to: Netdev Maintainers
Headers show
Series [net-next,01/12] can: gw: fix typo | expand

Checks

Context Check Description
netdev/cover_letter success Pull request
netdev/fixes_present success Link
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for net-next
netdev/subject_prefix success Link
netdev/cc_maintainers warning 1 maintainers not CCed: socketcan@hartkopp.net
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Link
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes success Link
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/header_inline success Link
netdev/stable success Stable not CCed

Commit Message

Marc Kleine-Budde Jan. 27, 2021, 9:22 a.m. UTC
This patch fixes a typo found by codespell.

Fixes: 94c23097f991 ("can: gw: support modification of Classical CAN DLCs")
Link: https://lore.kernel.org/r/20210127085529.2768537-3-mkl@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 net/can/gw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


base-commit: 6626a0266566c5aea16178c5e6cd7fc4db3f2f56

Comments

patchwork-bot+netdevbpf@kernel.org Jan. 28, 2021, 3:10 a.m. UTC | #1
Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Wed, 27 Jan 2021 10:22:16 +0100 you wrote:
> This patch fixes a typo found by codespell.
> 
> Fixes: 94c23097f991 ("can: gw: support modification of Classical CAN DLCs")
> Link: https://lore.kernel.org/r/20210127085529.2768537-3-mkl@pengutronix.de
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
>  net/can/gw.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> [...]

Here is the summary with links:
  - [net-next,01/12] can: gw: fix typo
    https://git.kernel.org/netdev/net-next/c/12da7a1f3cb6
  - [net-next,02/12] can: flexcan: fix typos
    https://git.kernel.org/netdev/net-next/c/02ee68081791
  - [net-next,03/12] can: dev: export can_get_state_str() function
    https://git.kernel.org/netdev/net-next/c/6fe27d68b456
  - [net-next,04/12] can: length: can_fd_len2dlc(): make legnth calculation readable again
    https://git.kernel.org/netdev/net-next/c/54eca60b1c94
  - [net-next,05/12] can: mcba_usb: remove h from printk format specifier
    https://git.kernel.org/netdev/net-next/c/22d63be91c50
  - [net-next,06/12] can: mcp251xfd: replace sizeof(u32) with val_bytes in regmap
    https://git.kernel.org/netdev/net-next/c/cdc4c698e4be
  - [net-next,07/12] can: mcp251xfd: mcp251xfd_start_xmit(): use mcp251xfd_get_tx_free() to check TX is is full
    https://git.kernel.org/netdev/net-next/c/9845b8f53019
  - [net-next,08/12] can: mcp251xfd: mcp251xfd_tx_obj_from_skb(): clean up padding of CAN-FD frames
    https://git.kernel.org/netdev/net-next/c/561aa5b4ce22
  - [net-next,09/12] can: mcp251xfd: mcp251xfd_hw_rx_obj_to_skb(): don't copy data for RTR CAN frames in RX-path
    https://git.kernel.org/netdev/net-next/c/e20b85c7eb2e
  - [net-next,10/12] can: mcp251xfd: mcp251xfd_tx_obj_from_skb(): don't copy data for RTR CAN frames in TX-path
    https://git.kernel.org/netdev/net-next/c/a68eda203676
  - [net-next,11/12] can: mcp251xfd: add len8_dlc support
    https://git.kernel.org/netdev/net-next/c/86f1e3b1dd9f
  - [net-next,12/12] can: mcp251xfd: add BQL support
    https://git.kernel.org/netdev/net-next/c/4162e18e949b

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/net/can/gw.c b/net/can/gw.c
index 8598d9da0e5f..ba4124805602 100644
--- a/net/can/gw.c
+++ b/net/can/gw.c
@@ -225,7 +225,7 @@  static void mod_store_ccdlc(struct canfd_frame *cf)
 	if (ccf->len <= CAN_MAX_DLEN)
 		return;
 
-	/* potentially broken values are catched in can_can_gw_rcv() */
+	/* potentially broken values are caught in can_can_gw_rcv() */
 	if (ccf->len > CAN_MAX_RAW_DLC)
 		return;