diff mbox series

realtek: fix dell typo

Message ID 20221128165817.973950-1-git@aiyionpri.me
State Accepted
Delegated to: Sander Vanheule
Headers show
Series realtek: fix dell typo | expand

Commit Message

Jan-Niklas Burfeind Nov. 28, 2022, 4:58 p.m. UTC
should be add/delete or abbreviated add/del

Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
---
 .../realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Philippe Mathieu-Daudé Nov. 29, 2022, 6:30 p.m. UTC | #1
On 28/11/22 17:58, Jan-Niklas Burfeind wrote:
> should be add/delete or abbreviated add/del
> 
> Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>
> ---
>   .../realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c     | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Sander Vanheule Dec. 1, 2022, 10:16 p.m. UTC | #2
On Mon, 2022-11-28 at 17:58 +0100, Jan-Niklas Burfeind wrote:
> should be add/delete or abbreviated add/del
> 
> Signed-off-by: Jan-Niklas Burfeind <git@aiyionpri.me>

Merged to master. Thanks!

Sander
diff mbox series

Patch

diff --git a/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c b/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c
index 2a60f61c95..e86ff9ccdf 100644
--- a/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c
+++ b/target/linux/realtek/files-5.10/drivers/net/dsa/rtl83xx/common.c
@@ -1401,7 +1401,7 @@  static int rtl83xx_fib_event(struct notifier_block *this, unsigned long event, v
 	case FIB_EVENT_ENTRY_REPLACE:
 	case FIB_EVENT_ENTRY_APPEND:
 	case FIB_EVENT_ENTRY_DEL:
-		pr_debug("%s: FIB_ENTRY ADD/DELL, event %ld\n", __func__, event);
+		pr_debug("%s: FIB_ENTRY ADD/DEL, event %ld\n", __func__, event);
 		if (info->family == AF_INET) {
 			struct fib_entry_notifier_info *fen_info = ptr;
 
@@ -1420,7 +1420,7 @@  static int rtl83xx_fib_event(struct notifier_block *this, unsigned long event, v
 
 		} else if (info->family == AF_INET6) {
 			struct fib6_entry_notifier_info *fen6_info = ptr;
-			pr_warn("%s: FIB_RULE ADD/DELL for IPv6 not supported\n", __func__);
+			pr_warn("%s: FIB_RULE ADD/DEL for IPv6 not supported\n", __func__);
 			kfree(fib_work);
 			return NOTIFY_DONE;
 		}
@@ -1428,7 +1428,7 @@  static int rtl83xx_fib_event(struct notifier_block *this, unsigned long event, v
 
 	case FIB_EVENT_RULE_ADD:
 	case FIB_EVENT_RULE_DEL:
-		pr_debug("%s: FIB_RULE ADD/DELL, event: %ld\n", __func__, event);
+		pr_debug("%s: FIB_RULE ADD/DEL, event: %ld\n", __func__, event);
 		memcpy(&fib_work->fr_info, ptr, sizeof(fib_work->fr_info));
 		fib_rule_get(fib_work->fr_info.rule);
 		break;