diff mbox series

caif: cleanup double word in comment

Message ID 20220206145521.2011008-1-trix@redhat.com (mailing list archive)
State Accepted
Commit 0812beb705ec84876029415d4e52bdc3e60d2bab
Delegated to: Netdev Maintainers
Headers show
Series caif: cleanup double word in comment | expand

Checks

Context Check Description
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix warning Target tree name not specified in the subject
netdev/cover_letter success Single patches do not need cover letters
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers success CCed 5 of 5 maintainers
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 8 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/tree_selection success Guessing tree name failed - patch did not apply

Commit Message

Tom Rix Feb. 6, 2022, 2:55 p.m. UTC
From: Tom Rix <trix@redhat.com>

Replace the second 'so' with 'free'.

Signed-off-by: Tom Rix <trix@redhat.com>
---
 net/caif/caif_dev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org Feb. 7, 2022, 12:10 p.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (master)
by David S. Miller <davem@davemloft.net>:

On Sun,  6 Feb 2022 06:55:21 -0800 you wrote:
> From: Tom Rix <trix@redhat.com>
> 
> Replace the second 'so' with 'free'.
> 
> Signed-off-by: Tom Rix <trix@redhat.com>
> ---
>  net/caif/caif_dev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - caif: cleanup double word in comment
    https://git.kernel.org/netdev/net-next/c/0812beb705ec

You are awesome, thank you!
diff mbox series

Patch

diff --git a/net/caif/caif_dev.c b/net/caif/caif_dev.c
index 440139706130a..52dd0b6835bc8 100644
--- a/net/caif/caif_dev.c
+++ b/net/caif/caif_dev.c
@@ -268,7 +268,7 @@  static int receive(struct sk_buff *skb, struct net_device *dev,
 
 	err = caifd->layer.up->receive(caifd->layer.up, pkt);
 
-	/* For -EILSEQ the packet is not freed so so it now */
+	/* For -EILSEQ the packet is not freed so free it now */
 	if (err == -EILSEQ)
 		cfpkt_destroy(pkt);