PCI: include linux/pm_wakeup.h for device_set_wakeup_capable
drivers/pci/pci.c needs pm_wakeup.h since it uses device_set_wakup_capable(). The latter also needs to be stubbed out for !CONFIG_PM. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
c157dfa3e4
commit
c300bd2fb5
|
@ -17,6 +17,7 @@
|
||||||
#include <linux/string.h>
|
#include <linux/string.h>
|
||||||
#include <linux/log2.h>
|
#include <linux/log2.h>
|
||||||
#include <linux/pci-aspm.h>
|
#include <linux/pci-aspm.h>
|
||||||
|
#include <linux/pm_wakeup.h>
|
||||||
#include <asm/dma.h> /* isa_dma_bridge_buggy */
|
#include <asm/dma.h> /* isa_dma_bridge_buggy */
|
||||||
#include "pci.h"
|
#include "pci.h"
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,8 @@ static inline void device_init_wakeup(struct device *dev, int val)
|
||||||
dev->power.can_wakeup = !!val;
|
dev->power.can_wakeup = !!val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void device_set_wakeup_capable(struct device *dev, int val) { }
|
||||||
|
|
||||||
static inline int device_can_wakeup(struct device *dev)
|
static inline int device_can_wakeup(struct device *dev)
|
||||||
{
|
{
|
||||||
return dev->power.can_wakeup;
|
return dev->power.can_wakeup;
|
||||||
|
|
Loading…
Reference in New Issue