From: Chen Ni Date: Mon, 2 Sep 2024 07:57:24 +0000 (+0800) Subject: fbdev: pxa3xx-gcu: Convert comma to semicolon X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2ff86df2b6a3b535b9cd4f3a9a37f5e181d3a898;p=users%2Fjedix%2Flinux-maple.git fbdev: pxa3xx-gcu: Convert comma to semicolon Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/pxa3xx-gcu.c b/drivers/video/fbdev/pxa3xx-gcu.c index 43c80316d84bb..489088b4e467b 100644 --- a/drivers/video/fbdev/pxa3xx-gcu.c +++ b/drivers/video/fbdev/pxa3xx-gcu.c @@ -594,8 +594,8 @@ static int pxa3xx_gcu_probe(struct platform_device *pdev) * container_of(). This isn't really necessary as we have a fixed minor * number anyway, but this is to avoid statics. */ - priv->misc_dev.minor = PXA3XX_GCU_MINOR, - priv->misc_dev.name = DRV_NAME, + priv->misc_dev.minor = PXA3XX_GCU_MINOR; + priv->misc_dev.name = DRV_NAME; priv->misc_dev.fops = &pxa3xx_gcu_miscdev_fops; /* handle IO resources */