mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
Staging: pata_rdc: convert code to work in 2.6.29
This fixes build problems in the pata_rdc driver due to api changes in the libata layer. Cc: Kevin Huang <Kevin.Huang@rdc.com.tw> Cc: Tomy Wang <Tomy.Wang@rdc.com.tw> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
89a2c2085b
commit
b079fa27d9
@ -148,7 +148,7 @@ static int __devinit rdc_init_one(
|
||||
{
|
||||
//struct device *dev = &pdev->dev;
|
||||
struct ata_port_info port_info[2];
|
||||
struct ata_port_info *ppinfo[] = { &port_info[0], &port_info[1] };
|
||||
const struct ata_port_info *ppinfo[] = { &port_info[0], &port_info[1] };
|
||||
|
||||
int rc;
|
||||
|
||||
@ -174,7 +174,7 @@ static int __devinit rdc_init_one(
|
||||
|
||||
pci_intx(pdev, 1); // enable interrupt
|
||||
|
||||
return ata_pci_init_one(pdev, ppinfo);
|
||||
return ata_pci_sff_init_one(pdev, ppinfo, &rdc_pata_sht, NULL);
|
||||
}
|
||||
|
||||
// callback function for ata_port
|
||||
|
Loading…
Reference in New Issue
Block a user