diff options
Diffstat (limited to 'drivers/ata/pata_opti.c')
-rw-r--r-- | drivers/ata/pata_opti.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/ata/pata_opti.c b/drivers/ata/pata_opti.c index 0af8a2c77cc9..1c44653e1e06 100644 --- a/drivers/ata/pata_opti.c +++ b/drivers/ata/pata_opti.c | |||
@@ -179,10 +179,6 @@ static struct scsi_host_template opti_sht = { | |||
179 | .slave_configure = ata_scsi_slave_config, | 179 | .slave_configure = ata_scsi_slave_config, |
180 | .slave_destroy = ata_scsi_slave_destroy, | 180 | .slave_destroy = ata_scsi_slave_destroy, |
181 | .bios_param = ata_std_bios_param, | 181 | .bios_param = ata_std_bios_param, |
182 | #ifdef CONFIG_PM | ||
183 | .resume = ata_scsi_device_resume, | ||
184 | .suspend = ata_scsi_device_suspend, | ||
185 | #endif | ||
186 | }; | 182 | }; |
187 | 183 | ||
188 | static struct ata_port_operations opti_port_ops = { | 184 | static struct ata_port_operations opti_port_ops = { |
@@ -220,19 +216,19 @@ static struct ata_port_operations opti_port_ops = { | |||
220 | 216 | ||
221 | static int opti_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 217 | static int opti_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
222 | { | 218 | { |
223 | static struct ata_port_info info = { | 219 | static const struct ata_port_info info = { |
224 | .sht = &opti_sht, | 220 | .sht = &opti_sht, |
225 | .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST, | 221 | .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST, |
226 | .pio_mask = 0x1f, | 222 | .pio_mask = 0x1f, |
227 | .port_ops = &opti_port_ops | 223 | .port_ops = &opti_port_ops |
228 | }; | 224 | }; |
229 | static struct ata_port_info *port_info[2] = { &info, &info }; | 225 | const struct ata_port_info *ppi[] = { &info, NULL }; |
230 | static int printed_version; | 226 | static int printed_version; |
231 | 227 | ||
232 | if (!printed_version++) | 228 | if (!printed_version++) |
233 | dev_printk(KERN_DEBUG, &dev->dev, "version " DRV_VERSION "\n"); | 229 | dev_printk(KERN_DEBUG, &dev->dev, "version " DRV_VERSION "\n"); |
234 | 230 | ||
235 | return ata_pci_init_one(dev, port_info, 2); | 231 | return ata_pci_init_one(dev, ppi); |
236 | } | 232 | } |
237 | 233 | ||
238 | static const struct pci_device_id opti[] = { | 234 | static const struct pci_device_id opti[] = { |