diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-08-16 03:17:03 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-12 14:55:35 -0400 |
commit | ac8869d56d95a8c74403e6f7a47d74fcfcc1b988 (patch) | |
tree | 2f812aff4c6e559f3c093f9933960d09631375c8 /drivers/ata/ata_piix.c | |
parent | 7d73a363dea186a864f6295bbe842da8044d42cd (diff) |
[libata] Remove ->port_disable() hook
It was always set to ata_port_disable(). Removed the hook, and replaced
the very few ap->ops->port_disable() callsites with direct calls to
ata_port_disable().
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/ata_piix.c')
-rw-r--r-- | drivers/ata/ata_piix.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index 68bc0ae671c5..45e3b60f26d0 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c | |||
@@ -290,7 +290,6 @@ static struct scsi_host_template piix_sht = { | |||
290 | }; | 290 | }; |
291 | 291 | ||
292 | static const struct ata_port_operations piix_pata_ops = { | 292 | static const struct ata_port_operations piix_pata_ops = { |
293 | .port_disable = ata_port_disable, | ||
294 | .set_piomode = piix_set_piomode, | 293 | .set_piomode = piix_set_piomode, |
295 | .set_dmamode = piix_set_dmamode, | 294 | .set_dmamode = piix_set_dmamode, |
296 | .mode_filter = ata_pci_default_filter, | 295 | .mode_filter = ata_pci_default_filter, |
@@ -323,7 +322,6 @@ static const struct ata_port_operations piix_pata_ops = { | |||
323 | }; | 322 | }; |
324 | 323 | ||
325 | static const struct ata_port_operations ich_pata_ops = { | 324 | static const struct ata_port_operations ich_pata_ops = { |
326 | .port_disable = ata_port_disable, | ||
327 | .set_piomode = piix_set_piomode, | 325 | .set_piomode = piix_set_piomode, |
328 | .set_dmamode = ich_set_dmamode, | 326 | .set_dmamode = ich_set_dmamode, |
329 | .mode_filter = ata_pci_default_filter, | 327 | .mode_filter = ata_pci_default_filter, |
@@ -356,8 +354,6 @@ static const struct ata_port_operations ich_pata_ops = { | |||
356 | }; | 354 | }; |
357 | 355 | ||
358 | static const struct ata_port_operations piix_sata_ops = { | 356 | static const struct ata_port_operations piix_sata_ops = { |
359 | .port_disable = ata_port_disable, | ||
360 | |||
361 | .tf_load = ata_tf_load, | 357 | .tf_load = ata_tf_load, |
362 | .tf_read = ata_tf_read, | 358 | .tf_read = ata_tf_read, |
363 | .check_status = ata_check_status, | 359 | .check_status = ata_check_status, |