mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 09:12:07 +00:00
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
This commit is contained in:
parent
7b844cf445
commit
2e64e0ba2b
@ -90,8 +90,8 @@ intel_iq80310_init(struct pci_dev *dev, struct map_pci_info *map)
|
||||
u32 win_base;
|
||||
|
||||
map->map.bankwidth = 1;
|
||||
map->map.read = mtd_pci_read8,
|
||||
map->map.write = mtd_pci_write8,
|
||||
map->map.read = mtd_pci_read8;
|
||||
map->map.write = mtd_pci_write8;
|
||||
|
||||
map->map.size = 0x00800000;
|
||||
map->base = ioremap(pci_resource_start(dev, 0),
|
||||
@ -185,8 +185,8 @@ intel_dc21285_init(struct pci_dev *dev, struct map_pci_info *map)
|
||||
return -ENXIO;
|
||||
|
||||
map->map.bankwidth = 4;
|
||||
map->map.read = mtd_pci_read32,
|
||||
map->map.write = mtd_pci_write32,
|
||||
map->map.read = mtd_pci_read32;
|
||||
map->map.write = mtd_pci_write32;
|
||||
map->map.size = len;
|
||||
map->base = ioremap(base, len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user