diff options
author | Tejun Heo <htejun@gmail.com> | 2007-10-17 15:24:16 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-17 20:48:30 -0400 |
commit | 8e2840e06d7da7ae17b1fbc416155a40b22e00ad (patch) | |
tree | 673378cec1faeeebf5ed0e05054c5368849ae999 /drivers/ata | |
parent | d85714d81cc0408daddb68c10f7fd69eafe7c213 (diff) | |
download | linux-8e2840e06d7da7ae17b1fbc416155a40b22e00ad.tar.bz2 |
pata_acpi: fix build breakage if !CONFIG_PM
There are configurations where CONFIG_ACPI but !CONFIG_PM. In this
case, pata_acpi can be selected but won't build. Fix it.
Reported by Avuton Olrich.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Cc: Avuton Olrich <avuton@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_acpi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/pata_acpi.c b/drivers/ata/pata_acpi.c index 5d3920f6fd69..0f6f7bcc3def 100644 --- a/drivers/ata/pata_acpi.c +++ b/drivers/ata/pata_acpi.c @@ -370,8 +370,10 @@ static struct pci_driver pacpi_pci_driver = { .id_table = pacpi_pci_tbl, .probe = pacpi_init_one, .remove = ata_pci_remove_one, +#ifdef CONFIG_PM .suspend = ata_pci_device_suspend, .resume = ata_pci_device_resume, +#endif }; static int __init pacpi_init(void) |