Syntax fix in fwohci_pci_suspend().

This commit is contained in:
Hidetoshi Shimokawa 2003-01-05 09:12:47 +00:00
parent b21bf9a59b
commit bda19384a1

View File

@ -308,8 +308,9 @@ fwohci_pci_detach(device_t self)
static int
fwohci_pci_suspend(device_t dev)
{
device_printf(dev, "fwohci_pci_suspend\n");
int err;
device_printf(dev, "fwohci_pci_suspend\n");
err = bus_generic_suspend(dev);
if (err)
return err;