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

Commit c83d9945 authored by Mika Kukkonen's avatar Mika Kukkonen Committed by Linus Torvalds
Browse files

[PATCH] Fix typo in drivers/pci/pci-driver.c



The git commit 794f5bfa
accidentally suffers from a previous typo in that file
(',' instead of ';' in end of line). Patch included.

Signed-off-by: default avatarMika Kukkonen <(mikukkon@iki.fi)>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 0e396ee4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -396,7 +396,7 @@ int pci_register_driver(struct pci_driver *drv)
	/* FIXME, once all of the existing PCI drivers have been fixed to set
	 * the pci shutdown function, this test can go away. */
	if (!drv->driver.shutdown)
		drv->driver.shutdown = pci_device_shutdown,
		drv->driver.shutdown = pci_device_shutdown;
	drv->driver.owner = drv->owner;
	drv->driver.kobj.ktype = &pci_driver_kobj_type;
	pci_init_dynids(&drv->dynids);