Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf610ca2 authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] Fix breakage in 7281c248



A couple of missing semicolons.

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 7059abed
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -135,11 +135,11 @@ static void ixdp2400_pci_postinit(void)
	if (ixdp2x00_master_npu()) {
		dev = pci_get_bus_and_slot(1, IXDP2400_SLAVE_ENET_DEVFN);
		pci_remove_bus_device(dev);
		pci_dev_put(dev)
		pci_dev_put(dev);
	} else {
		dev = pci_get_bus_and_slot(1, IXDP2400_MASTER_ENET_DEVFN);
		pci_remove_bus_device(dev);
		pci_dev_put(dev)
		pci_dev_put(dev);

		ixdp2x00_slave_pci_postinit();
	}