diff options
Diffstat (limited to 'drivers/ata/pata_sc1200.c')
-rw-r--r-- | drivers/ata/pata_sc1200.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ata/pata_sc1200.c b/drivers/ata/pata_sc1200.c index 2af9f8c8bd1f..225013ecf4b6 100644 --- a/drivers/ata/pata_sc1200.c +++ b/drivers/ata/pata_sc1200.c | |||
@@ -243,7 +243,7 @@ static struct ata_port_operations sc1200_port_ops = { | |||
243 | 243 | ||
244 | static int sc1200_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 244 | static int sc1200_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
245 | { | 245 | { |
246 | static struct ata_port_info info = { | 246 | static const struct ata_port_info info = { |
247 | .sht = &sc1200_sht, | 247 | .sht = &sc1200_sht, |
248 | .flags = ATA_FLAG_SLAVE_POSS|ATA_FLAG_SRST, | 248 | .flags = ATA_FLAG_SLAVE_POSS|ATA_FLAG_SRST, |
249 | .pio_mask = 0x1f, | 249 | .pio_mask = 0x1f, |
@@ -251,10 +251,10 @@ static int sc1200_init_one(struct pci_dev *dev, const struct pci_device_id *id) | |||
251 | .udma_mask = 0x07, | 251 | .udma_mask = 0x07, |
252 | .port_ops = &sc1200_port_ops | 252 | .port_ops = &sc1200_port_ops |
253 | }; | 253 | }; |
254 | static struct ata_port_info *port_info[2] = { &info, &info }; | ||
255 | |||
256 | /* Can't enable port 2 yet, see top comments */ | 254 | /* Can't enable port 2 yet, see top comments */ |
257 | return ata_pci_init_one(dev, port_info, 1); | 255 | const struct ata_port_info *ppi[] = { &info, &ata_dummy_port_info }; |
256 | |||
257 | return ata_pci_init_one(dev, ppi); | ||
258 | } | 258 | } |
259 | 259 | ||
260 | static const struct pci_device_id sc1200[] = { | 260 | static const struct pci_device_id sc1200[] = { |