diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-02 20:58:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-02 20:58:52 -0500 |
commit | bb648a0d22908116b4ef168935a160d7f17c4e6d (patch) | |
tree | 5ccb780a679433283ac7931d2bcbeb92828e443d /drivers/ata/pata_it8213.c | |
parent | 8b453397da923eae4aeb3b41e49793295e09eedf (diff) | |
parent | 6ffa01d88c9dd45e2ed917b5eeeb494d07efb1ab (diff) |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
libata: add CONFIG_PM to libata core layer
libata: add missing CONFIG_PM in LLDs
libata: add missing PM callbacks
pata_qdi: Fix initialisation
[libata] pata_cmd64x: fix driver description in comments
[libata] pata_{legacy,sc1200,sl82c105}: add missing hooks
[libata] change master/slave IDENTIFY order
libata-core: Fix simplex handling
Diffstat (limited to 'drivers/ata/pata_it8213.c')
-rw-r--r-- | drivers/ata/pata_it8213.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/ata/pata_it8213.c b/drivers/ata/pata_it8213.c index 7eac869dfcd3..ea734701555e 100644 --- a/drivers/ata/pata_it8213.c +++ b/drivers/ata/pata_it8213.c | |||
@@ -246,8 +246,10 @@ static struct scsi_host_template it8213_sht = { | |||
246 | .dma_boundary = ATA_DMA_BOUNDARY, | 246 | .dma_boundary = ATA_DMA_BOUNDARY, |
247 | .slave_configure = ata_scsi_slave_config, | 247 | .slave_configure = ata_scsi_slave_config, |
248 | .bios_param = ata_std_bios_param, | 248 | .bios_param = ata_std_bios_param, |
249 | #ifdef CONFIG_PM | ||
249 | .resume = ata_scsi_device_resume, | 250 | .resume = ata_scsi_device_resume, |
250 | .suspend = ata_scsi_device_suspend, | 251 | .suspend = ata_scsi_device_suspend, |
252 | #endif | ||
251 | }; | 253 | }; |
252 | 254 | ||
253 | static const struct ata_port_operations it8213_ops = { | 255 | static const struct ata_port_operations it8213_ops = { |
@@ -330,8 +332,10 @@ static struct pci_driver it8213_pci_driver = { | |||
330 | .id_table = it8213_pci_tbl, | 332 | .id_table = it8213_pci_tbl, |
331 | .probe = it8213_init_one, | 333 | .probe = it8213_init_one, |
332 | .remove = ata_pci_remove_one, | 334 | .remove = ata_pci_remove_one, |
335 | #ifdef CONFIG_PM | ||
333 | .suspend = ata_pci_device_suspend, | 336 | .suspend = ata_pci_device_suspend, |
334 | .resume = ata_pci_device_resume, | 337 | .resume = ata_pci_device_resume, |
338 | #endif | ||
335 | }; | 339 | }; |
336 | 340 | ||
337 | static int __init it8213_init(void) | 341 | static int __init it8213_init(void) |