aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2009-06-17 00:16:15 +0200
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-06-16 15:19:02 -0700
commit7d9a73f6dcf4390d256bf19330c81e91523a26d5 (patch)
treedddaeb3e6a1f5d5dd8d1b96ed6105566b69a3b21 /drivers/pci
parentx86/ACPI: Correct maximum allowed _CRS returned resources and warn if exceeded (diff)
downloadlinux-dev-7d9a73f6dcf4390d256bf19330c81e91523a26d5.tar.xz
linux-dev-7d9a73f6dcf4390d256bf19330c81e91523a26d5.zip
PCI PM: consistently use type bool for wake enable variable
Other functions use type bool, so use that for pci_enable_wake as well. Signed-off-by: Frans Pop <elendil@planet.nl> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 7b59fd7c9575..ccc0a0ccbef9 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -1205,7 +1205,7 @@ void pci_pme_active(struct pci_dev *dev, bool enable)
* Error code depending on the platform is returned if both the platform and
* the native mechanism fail to enable the generation of wake-up events
*/
-int pci_enable_wake(struct pci_dev *dev, pci_power_t state, int enable)
+int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable)
{
int error = 0;
bool pme_done = false;