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

Commit b6e335ae authored by Rafael J. Wysocki's avatar Rafael J. Wysocki Committed by Jesse Barnes
Browse files

PCI/PM: Use pm_wakeup_event() directly for reporting wakeup events



After recent changes related to wakeup events pm_wakeup_event()
automatically checks if the given device is configured to signal wakeup,
so pci_wakeup_event() may be a static inline function calling
pm_wakeup_event() directly.

Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent ff29530e
Loading
Loading
Loading
Loading
+0 −16
Original line number Diff line number Diff line
@@ -1297,22 +1297,6 @@ bool pci_check_pme_status(struct pci_dev *dev)
	return ret;
}

/*
 * Time to wait before the system can be put into a sleep state after reporting
 * a wakeup event signaled by a PCI device.
 */
#define PCI_WAKEUP_COOLDOWN	100

/**
 * pci_wakeup_event - Report a wakeup event related to a given PCI device.
 * @dev: Device to report the wakeup event for.
 */
void pci_wakeup_event(struct pci_dev *dev)
{
	if (device_may_wakeup(&dev->dev))
		pm_wakeup_event(&dev->dev, PCI_WAKEUP_COOLDOWN);
}

/**
 * pci_pme_wakeup - Wake up a PCI device if its PME Status bit is set.
 * @dev: Device to handle.
+6 −0
Original line number Diff line number Diff line
@@ -74,6 +74,12 @@ extern void pci_pm_init(struct pci_dev *dev);
extern void platform_pci_wakeup_init(struct pci_dev *dev);
extern void pci_allocate_cap_save_buffers(struct pci_dev *dev);

static inline void pci_wakeup_event(struct pci_dev *dev)
{
	/* Wait 100 ms before the system can be put into a sleep state. */
	pm_wakeup_event(&dev->dev, 100);
}

static inline bool pci_is_bridge(struct pci_dev *pci_dev)
{
	return !!(pci_dev->subordinate);
+0 −1
Original line number Diff line number Diff line
@@ -820,7 +820,6 @@ int pci_prepare_to_sleep(struct pci_dev *dev);
int pci_back_from_sleep(struct pci_dev *dev);
bool pci_dev_run_wake(struct pci_dev *dev);
bool pci_check_pme_status(struct pci_dev *dev);
void pci_wakeup_event(struct pci_dev *dev);
void pci_pme_wakeup_bus(struct pci_bus *bus);

static inline int pci_enable_wake(struct pci_dev *dev, pci_power_t state,