Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sata/mvebu: use #ifdef around suspend/resume code

The newly added suspend/resume implementation for ahci_mvebu causes
a link error when CONFIG_PM_SLEEP 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 <arnd@arndb.de>
Fixes: d6ecf1581488 ("ata: ahci_mvebu: add suspend/resume support")
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Tejun Heo <tj@kernel.org>

authored by

Arnd Bergmann and committed by
Tejun Heo
4f1dd973 4d92f009

+5
+5
drivers/ata/ahci_mvebu.c
··· 62 62 writel(0x80, hpriv->mmio + AHCI_VENDOR_SPECIFIC_0_DATA); 63 63 } 64 64 65 + #ifdef CONFIG_PM_SLEEP 65 66 static int ahci_mvebu_suspend(struct platform_device *pdev, pm_message_t state) 66 67 { 67 68 return ahci_platform_suspend_host(&pdev->dev); ··· 82 81 83 82 return ahci_platform_resume_host(&pdev->dev); 84 83 } 84 + #else 85 + #define ahci_mvebu_suspend NULL 86 + #define ahci_mvebu_resume NULL 87 + #endif 85 88 86 89 static const struct ata_port_info ahci_mvebu_port_info = { 87 90 .flags = AHCI_FLAG_COMMON,