]> git.baikalelectronics.ru Git - kernel.git/commit
[libata] PM callbacks should be conditionally compiled on CONFIG_PM_SLEEP
authorYuanhan Liu <yuanhan.liu@linux.intel.com>
Tue, 16 Oct 2012 14:59:01 +0000 (22:59 +0800)
committerJeff Garzik <jgarzik@redhat.com>
Fri, 16 Nov 2012 05:45:37 +0000 (00:45 -0500)
commitdf54a7b22d420c72d9a6839f6c71d6f20c09435c
tree6475e134096a3bac17c5895c9805324ac3e65b37
parenta63bf88b8dbe2ec9c9bad2817a7eabff825b4240
[libata] PM callbacks should be conditionally compiled on CONFIG_PM_SLEEP

This will fix warnings like following when CONFIG_PM_SLEEP is not set:

        warning: 'xxx_suspend' defined but not used [-Wunused-function]
        warning: 'xxx_resume' defined but not used [-Wunused-function]

Because
SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn)

Only references the callbacks on CONFIG_PM_SLEEP (instead of CONFIG_PM).

Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: linux-ide@vger.kernel.org
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/ata/ahci_platform.c
drivers/ata/pata_arasan_cf.c
drivers/ata/sata_highbank.c