This fixes these two warnings: drivers/net/wireless/ath/ath5k/base.c:202: warning: ‘ath5k_pci_suspend_compat’ defined but not used drivers/net/wireless/ath/ath5k/base.c:216: warning: ‘ath5k_pci_resume_compat’ defined but not used Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> --- compat/patches/11-dev-pm-ops.patch | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/compat/patches/11-dev-pm-ops.patch b/compat/patches/11-dev-pm-ops.patch index a1937a9..fc4de8f 100644 --- a/compat/patches/11-dev-pm-ops.patch +++ b/compat/patches/11-dev-pm-ops.patch @@ -14,7 +14,6 @@ calls on compat code with only slight modifications. static int ath5k_pci_suspend(struct device *dev); static int ath5k_pci_resume(struct device *dev); +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,29)) -+#endif +static int ath5k_pci_suspend_compat(struct pci_dev *pdev, pm_message_t state) +{ + int r; @@ -40,6 +39,7 @@ calls on compat code with only slight modifications. + + return ath5k_pci_resume(&pdev->dev); +} ++#endif SIMPLE_DEV_PM_OPS(ath5k_pm_ops, ath5k_pci_suspend, ath5k_pci_resume); #define ATH5K_PM_OPS (&ath5k_pm_ops) -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html