X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=target%2Flinux%2Fmvebu%2Fpatches-4.4%2F000-sata_use_ifdef_around_suspend_resume.patch;fp=target%2Flinux%2Fmvebu%2Fpatches-4.4%2F000-sata_use_ifdef_around_suspend_resume.patch;h=0000000000000000000000000000000000000000;hp=ba0bd96db4f3e246d17e61c264916a8e6b9c0a8d;hb=52710565e742a6ce2a746ab644e446c402bc1e80;hpb=a2600c3d84e5936827c9459b4e5812b0d5aa37c3 diff --git a/target/linux/mvebu/patches-4.4/000-sata_use_ifdef_around_suspend_resume.patch b/target/linux/mvebu/patches-4.4/000-sata_use_ifdef_around_suspend_resume.patch deleted file mode 100644 index ba0bd96db4..0000000000 --- a/target/linux/mvebu/patches-4.4/000-sata_use_ifdef_around_suspend_resume.patch +++ /dev/null @@ -1,34 +0,0 @@ -The newly added suspend/resume implementation for ahci_mvebu causes -a link error when CONFIG_PM_SUSPEND is disabled: - -ERROR: "ahci_platform_suspend_host" [drivers/ata/ahci_mvebu.ko] undefined! -ERROR: "ahci_platform_resume_host" [drivers/ata/ahci_mvebu.ko] undefined! - -This adds the same #ifdef here that exists in the ahci_platform driver -which defines the above functions. - -Signed-off-by: Arnd Bergmann -Fixes: d6ecf1581488 ("ata: ahci_mvebu: add suspend/resume support") -Acked-by: Thomas Petazzoni - ---- a/drivers/ata/ahci_mvebu.c -+++ b/drivers/ata/ahci_mvebu.c -@@ -62,6 +62,7 @@ static void ahci_mvebu_regret_option(str - writel(0x80, hpriv->mmio + AHCI_VENDOR_SPECIFIC_0_DATA); - } - -+#ifdef CONFIG_PM_SLEEP - static int ahci_mvebu_suspend(struct platform_device *pdev, pm_message_t state) - { - return ahci_platform_suspend_host(&pdev->dev); -@@ -81,6 +82,10 @@ static int ahci_mvebu_resume(struct plat - - return ahci_platform_resume_host(&pdev->dev); - } -+#else -+#define ahci_mvebu_suspend NULL -+#define ahci_mvebu_resume NULL -+#endif - - static const struct ata_port_info ahci_mvebu_port_info = { - .flags = AHCI_FLAG_COMMON,