diff options
author | Chen Ni <nichen@iscas.ac.cn> | 2024-09-02 15:57:24 +0800 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-09-02 13:54:25 +0200 |
commit | 2ff86df2b6a3b535b9cd4f3a9a37f5e181d3a898 (patch) | |
tree | f391603fed1feb031d7b1ae60f78a90acd4660ab | |
parent | bd97615a331684590f6fe65420e9a959a57c975b (diff) | |
download | linux-stable-2ff86df2b6a3b535b9cd4f3a9a37f5e181d3a898.tar.gz linux-stable-2ff86df2b6a3b535b9cd4f3a9a37f5e181d3a898.tar.bz2 linux-stable-2ff86df2b6a3b535b9cd4f3a9a37f5e181d3a898.zip |
fbdev: pxa3xx-gcu: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | drivers/video/fbdev/pxa3xx-gcu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/fbdev/pxa3xx-gcu.c b/drivers/video/fbdev/pxa3xx-gcu.c index 43c80316d84b..489088b4e467 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 */ |