IDE: consistently use type bool for wake enable parameter Other functions use type bool, so use that for pci_enable_wake as well. Signed-off-by: Frans Pop <elendil@xxxxxxxxx> --- Hi Jesse, I've had this trivial patch sitting in my local branch for some time. Please consider including. Cheers, FJP diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 1a91bf9..602052e 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -1203,7 +1203,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; diff --git a/include/linux/pci.h b/include/linux/pci.h index 37f3430..6f6bc19 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -724,7 +724,7 @@ int pci_set_power_state(struct pci_dev *dev, pci_power_t state); pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state); bool pci_pme_capable(struct pci_dev *dev, pci_power_t state); void pci_pme_active(struct pci_dev *dev, bool enable); -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 pci_wake_from_d3(struct pci_dev *dev, bool enable); pci_power_t pci_target_state(struct pci_dev *dev); int pci_prepare_to_sleep(struct pci_dev *dev); -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html