Skip to content

Commit

Permalink
PCI / PM: Remove spurious semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Luis de Bethencourt authored and Rafael J. Wysocki committed Jan 18, 2018
1 parent a8750dd commit bee344c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/pci/pci-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit bee344c

Please sign in to comment.