aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide/pci/cs5520.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide/pci/cs5520.c')
-rw-r--r--drivers/ide/pci/cs5520.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/ide/pci/cs5520.c b/drivers/ide/pci/cs5520.c
index e8e7df1915bf..b8ec06d22c61 100644
--- a/drivers/ide/pci/cs5520.c
+++ b/drivers/ide/pci/cs5520.c
@@ -114,9 +114,9 @@ static const struct ide_port_info cyrix_chipsets[] __devinitdata = {
114 114
115static int __devinit cs5520_init_one(struct pci_dev *dev, const struct pci_device_id *id) 115static int __devinit cs5520_init_one(struct pci_dev *dev, const struct pci_device_id *id)
116{ 116{
117 struct ide_host *host;
117 const struct ide_port_info *d = &cyrix_chipsets[id->driver_data]; 118 const struct ide_port_info *d = &cyrix_chipsets[id->driver_data];
118 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL }; 119 hw_regs_t hw[4], *hws[] = { NULL, NULL, NULL, NULL };
119 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
120 120
121 ide_setup_pci_noise(dev, d); 121 ide_setup_pci_noise(dev, d);
122 122
@@ -138,9 +138,11 @@ static int __devinit cs5520_init_one(struct pci_dev *dev, const struct pci_devic
138 * do all the device setup for us 138 * do all the device setup for us
139 */ 139 */
140 140
141 ide_pci_setup_ports(dev, d, 14, &idx[0], &hw[0], &hws[0]); 141 ide_pci_setup_ports(dev, d, 14, &hw[0], &hws[0]);
142 142
143 ide_device_add(idx, d, hws); 143 host = ide_host_alloc(d, hws);
144 if (host)
145 ide_host_register(host, d, hws);
144 146
145 return 0; 147 return 0;
146} 148}