1
0
Fork 0

PCI / PM: Remove spurious semicolon

The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Acked-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
hifive-unleashed-5.1
Luis de Bethencourt 2018-01-17 10:33:21 +00:00 committed by Rafael J. Wysocki
parent a8750ddca9
commit bee344cb70
1 changed files with 1 additions and 1 deletions

View File

@ -953,7 +953,7 @@ static int pci_pm_freeze_late(struct device *dev)
if (dev_pm_smart_suspend_and_suspended(dev))
return 0;
return pm_generic_freeze_late(dev);;
return pm_generic_freeze_late(dev);
}
static int pci_pm_freeze_noirq(struct device *dev)