Re: [PATCH net-next 12/33] net: dsa: lan9303: i2c: Remove comma after sentinel-entry in match-table
From: Alexander Sverdlin
Date: Fri Sep 04 2026 - 05:05:38 EST
On Fri, 2026-09-04 at 10:06 +0530, Siddharth Vadapalli wrote:
> 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@xxxxxx>
Reviewed-by: Alexander Sverdlin <alex@xxxxxxxxxxxx>
> ---
> drivers/net/dsa/lan9303_i2c.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/dsa/lan9303_i2c.c b/drivers/net/dsa/lan9303_i2c.c
> index 3a09f3907f44..7b70e22371fc 100644
> --- a/drivers/net/dsa/lan9303_i2c.c
> +++ b/drivers/net/dsa/lan9303_i2c.c
> @@ -96,7 +96,7 @@ MODULE_DEVICE_TABLE(i2c, lan9303_i2c_id);
>
> static const struct of_device_id lan9303_i2c_of_match[] = {
> { .compatible = "smsc,lan9303-i2c", },
> - { /* sentinel */ },
> + { /* sentinel */ }
> };
> MODULE_DEVICE_TABLE(of, lan9303_i2c_of_match);