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/pata_ali.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/pata_ali.c')
-rw-r--r-- | drivers/ata/pata_ali.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/ata/pata_ali.c b/drivers/ata/pata_ali.c index 9436c4963929..7fc11ef0fd26 100644 --- a/drivers/ata/pata_ali.c +++ b/drivers/ata/pata_ali.c | |||
@@ -305,7 +305,6 @@ static struct scsi_host_template ali_sht = { | |||
305 | */ | 305 | */ |
306 | 306 | ||
307 | static struct ata_port_operations ali_early_port_ops = { | 307 | static struct ata_port_operations ali_early_port_ops = { |
308 | .port_disable = ata_port_disable, | ||
309 | .set_piomode = ali_set_piomode, | 308 | .set_piomode = ali_set_piomode, |
310 | .tf_load = ata_tf_load, | 309 | .tf_load = ata_tf_load, |
311 | .tf_read = ata_tf_read, | 310 | .tf_read = ata_tf_read, |
@@ -336,8 +335,6 @@ static struct ata_port_operations ali_early_port_ops = { | |||
336 | * detect | 335 | * detect |
337 | */ | 336 | */ |
338 | static struct ata_port_operations ali_20_port_ops = { | 337 | static struct ata_port_operations ali_20_port_ops = { |
339 | .port_disable = ata_port_disable, | ||
340 | |||
341 | .set_piomode = ali_set_piomode, | 338 | .set_piomode = ali_set_piomode, |
342 | .set_dmamode = ali_set_dmamode, | 339 | .set_dmamode = ali_set_dmamode, |
343 | .mode_filter = ali_20_filter, | 340 | .mode_filter = ali_20_filter, |
@@ -376,7 +373,6 @@ static struct ata_port_operations ali_20_port_ops = { | |||
376 | * Port operations for DMA capable ALi with cable detect | 373 | * Port operations for DMA capable ALi with cable detect |
377 | */ | 374 | */ |
378 | static struct ata_port_operations ali_c2_port_ops = { | 375 | static struct ata_port_operations ali_c2_port_ops = { |
379 | .port_disable = ata_port_disable, | ||
380 | .set_piomode = ali_set_piomode, | 376 | .set_piomode = ali_set_piomode, |
381 | .set_dmamode = ali_set_dmamode, | 377 | .set_dmamode = ali_set_dmamode, |
382 | .mode_filter = ata_pci_default_filter, | 378 | .mode_filter = ata_pci_default_filter, |
@@ -414,7 +410,6 @@ static struct ata_port_operations ali_c2_port_ops = { | |||
414 | * Port operations for DMA capable ALi with cable detect and LBA48 | 410 | * Port operations for DMA capable ALi with cable detect and LBA48 |
415 | */ | 411 | */ |
416 | static struct ata_port_operations ali_c5_port_ops = { | 412 | static struct ata_port_operations ali_c5_port_ops = { |
417 | .port_disable = ata_port_disable, | ||
418 | .set_piomode = ali_set_piomode, | 413 | .set_piomode = ali_set_piomode, |
419 | .set_dmamode = ali_set_dmamode, | 414 | .set_dmamode = ali_set_dmamode, |
420 | .mode_filter = ata_pci_default_filter, | 415 | .mode_filter = ata_pci_default_filter, |