diff options
-rw-r--r-- | drivers/staging/pata_rdc/pata_rdc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/pata_rdc/pata_rdc.c b/drivers/staging/pata_rdc/pata_rdc.c index 657e9971f41c..5bc74ed05328 100644 --- a/drivers/staging/pata_rdc/pata_rdc.c +++ b/drivers/staging/pata_rdc/pata_rdc.c | |||
@@ -148,7 +148,7 @@ static int __devinit rdc_init_one( | |||
148 | { | 148 | { |
149 | //struct device *dev = &pdev->dev; | 149 | //struct device *dev = &pdev->dev; |
150 | struct ata_port_info port_info[2]; | 150 | struct ata_port_info port_info[2]; |
151 | struct ata_port_info *ppinfo[] = { &port_info[0], &port_info[1] }; | 151 | const struct ata_port_info *ppinfo[] = { &port_info[0], &port_info[1] }; |
152 | 152 | ||
153 | int rc; | 153 | int rc; |
154 | 154 | ||
@@ -174,7 +174,7 @@ static int __devinit rdc_init_one( | |||
174 | 174 | ||
175 | pci_intx(pdev, 1); // enable interrupt | 175 | pci_intx(pdev, 1); // enable interrupt |
176 | 176 | ||
177 | return ata_pci_init_one(pdev, ppinfo); | 177 | return ata_pci_sff_init_one(pdev, ppinfo, &rdc_pata_sht, NULL); |
178 | } | 178 | } |
179 | 179 | ||
180 | // callback function for ata_port | 180 | // callback function for ata_port |