Commit a2d029b1 authored by Zheng Yongjun's avatar Zheng Yongjun Committed by Thomas Bogendoerfer

mips: pci: convert comma to semicolon

Replace a comma between expression statements by a semicolon.
Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 3a845b30
...@@ -117,8 +117,8 @@ int __init vpe_module_init(void) ...@@ -117,8 +117,8 @@ int __init vpe_module_init(void)
} }
device_initialize(&vpe_device); device_initialize(&vpe_device);
vpe_device.class = &vpe_class, vpe_device.class = &vpe_class;
vpe_device.parent = NULL, vpe_device.parent = NULL;
dev_set_name(&vpe_device, "vpe_sp"); dev_set_name(&vpe_device, "vpe_sp");
vpe_device.devt = MKDEV(major, VPE_MODULE_MINOR); vpe_device.devt = MKDEV(major, VPE_MODULE_MINOR);
err = device_add(&vpe_device); err = device_add(&vpe_device);
......
...@@ -483,11 +483,11 @@ static int ar2315_pci_probe(struct platform_device *pdev) ...@@ -483,11 +483,11 @@ static int ar2315_pci_probe(struct platform_device *pdev)
apc->io_res.name = "AR2315 IO space"; apc->io_res.name = "AR2315 IO space";
apc->io_res.start = 0; apc->io_res.start = 0;
apc->io_res.end = 0; apc->io_res.end = 0;
apc->io_res.flags = IORESOURCE_IO, apc->io_res.flags = IORESOURCE_IO;
apc->pci_ctrl.pci_ops = &ar2315_pci_ops; apc->pci_ctrl.pci_ops = &ar2315_pci_ops;
apc->pci_ctrl.mem_resource = &apc->mem_res, apc->pci_ctrl.mem_resource = &apc->mem_res;
apc->pci_ctrl.io_resource = &apc->io_res, apc->pci_ctrl.io_resource = &apc->io_res;
register_pci_controller(&apc->pci_ctrl); register_pci_controller(&apc->pci_ctrl);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment