diff options
| author | Siddharth Vadapalli <s-vadapalli@ti.com> | 2026-09-04 10:06:16 +0530 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-09-07 16:52:40 -0700 |
| commit | 2d08ac30e2ed2a92dd9439e7615bb49d012376e9 (patch) | |
| tree | ee626fa116dbaf453a33e3205bf3da2d877d80fe | |
| parent | 30fccb0c4e760d9790b9f8f2f4828fffda8f3eb7 (diff) | |
| download | linux-next-2d08ac30e2ed2a92dd9439e7615bb49d012376e9.tar.gz linux-next-2d08ac30e2ed2a92dd9439e7615bb49d012376e9.zip | |
net: dsa: bcm_sf2: 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.
Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Link: https://patch.msgid.link/20260904043724.2955444-11-s-vadapalli@ti.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | drivers/net/dsa/bcm_sf2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/bcm_sf2.c b/drivers/net/dsa/bcm_sf2.c index de3efa3ce9a7..9e5713015187 100644 --- a/drivers/net/dsa/bcm_sf2.c +++ b/drivers/net/dsa/bcm_sf2.c @@ -1358,7 +1358,7 @@ static const struct of_device_id bcm_sf2_of_match[] = { { .compatible = "brcm,bcm7278-switch-v4.8", .data = &bcm_sf2_7278_data }, - { /* sentinel */ }, + { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, bcm_sf2_of_match); |
