summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiddharth Vadapalli <s-vadapalli@ti.com>2026-09-04 10:06:27 +0530
committerJakub Kicinski <kuba@kernel.org>2026-09-07 16:56:00 -0700
commit068d6ebde398586ea8d568d0994fbe1868edf640 (patch)
treec953fa3d9e01e7dfa74667eaa1c5603a3f449ca5
parent6233d1ee37717e81697a08aa7b61910f68be7b1f (diff)
downloadlinux-next-068d6ebde398586ea8d568d0994fbe1868edf640.tar.gz
linux-next-068d6ebde398586ea8d568d0994fbe1868edf640.zip
net: dsa: realtek: rtl8366rb: Remove comma after sentinel-entry in match-table
Since sentinel is the last entry and we do not expect further entries following it, remove the comma. Reviewed-by: Linus Walleij <linusw@kernel.org> Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com> Link: https://patch.msgid.link/20260904043724.2955444-22-s-vadapalli@ti.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--drivers/net/dsa/realtek/rtl8366rb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/realtek/rtl8366rb.c b/drivers/net/dsa/realtek/rtl8366rb.c
index f11831b66de8..093a06c599d4 100644
--- a/drivers/net/dsa/realtek/rtl8366rb.c
+++ b/drivers/net/dsa/realtek/rtl8366rb.c
@@ -1839,7 +1839,7 @@ const struct realtek_variant rtl8366rb_variant = {
static const struct of_device_id rtl8366rb_of_match[] = {
{ .compatible = "realtek,rtl8366rb", .data = &rtl8366rb_variant, },
- { /* sentinel */ },
+ { /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, rtl8366rb_of_match);