From: Lad Prabhakar Date: Wed, 10 Sep 2025 20:41:23 +0000 (+0100) Subject: net: pcs: rzn1-miic: Drop trailing comma from of_device_id table X-Git-Tag: v6.18-rc1~132^2~168^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2e12fca3164faf7e0c073000ef693c7d9f764b2;p=thirdparty%2Flinux.git net: pcs: rzn1-miic: Drop trailing comma from of_device_id table Remove the trailing comma after the sentinel entry in the of_device_id match table. Signed-off-by: Lad Prabhakar Reviewed-by: Andrew Lunn Tested-by: Wolfram Sang Link: https://patch.msgid.link/20250910204132.319975-3-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Jakub Kicinski --- diff --git a/drivers/net/pcs/pcs-rzn1-miic.c b/drivers/net/pcs/pcs-rzn1-miic.c index ce73d9474d5bf..c1bd7cd584787 100644 --- a/drivers/net/pcs/pcs-rzn1-miic.c +++ b/drivers/net/pcs/pcs-rzn1-miic.c @@ -529,7 +529,7 @@ static void miic_remove(struct platform_device *pdev) static const struct of_device_id miic_of_mtable[] = { { .compatible = "renesas,rzn1-miic" }, - { /* sentinel */ }, + { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, miic_of_mtable);