Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mtd: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20210108092300.18909-1-zhengyongjun3@huawei.com

authored by

Zheng Yongjun and committed by
Miquel Raynal
2e64e0ba 7b844cf4

+4 -4
+4 -4
drivers/mtd/maps/pci.c
··· 90 90 u32 win_base; 91 91 92 92 map->map.bankwidth = 1; 93 - map->map.read = mtd_pci_read8, 94 - map->map.write = mtd_pci_write8, 93 + map->map.read = mtd_pci_read8; 94 + map->map.write = mtd_pci_write8; 95 95 96 96 map->map.size = 0x00800000; 97 97 map->base = ioremap(pci_resource_start(dev, 0), ··· 185 185 return -ENXIO; 186 186 187 187 map->map.bankwidth = 4; 188 - map->map.read = mtd_pci_read32, 189 - map->map.write = mtd_pci_write32, 188 + map->map.read = mtd_pci_read32; 189 + map->map.write = mtd_pci_write32; 190 190 map->map.size = len; 191 191 map->base = ioremap(base, len); 192 192