Commit c83d9945c05570ba6b8ec5460c99d1ab7c6e6671

Authored by Mika Kukkonen
Committed by Linus Torvalds
1 parent 0e396ee43e

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

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

Signed-off-by: Mika Kukkonen (mikukkon@iki.fi)
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/pci/pci-driver.c
... ... @@ -396,7 +396,7 @@
396 396 /* FIXME, once all of the existing PCI drivers have been fixed to set
397 397 * the pci shutdown function, this test can go away. */
398 398 if (!drv->driver.shutdown)
399   - drv->driver.shutdown = pci_device_shutdown,
  399 + drv->driver.shutdown = pci_device_shutdown;
400 400 drv->driver.owner = drv->owner;
401 401 drv->driver.kobj.ktype = &pci_driver_kobj_type;
402 402 pci_init_dynids(&drv->dynids);