summaryrefslogtreecommitdiff
path: root/Documentation/driver-api/libata.rst
diff options
context:
space:
mode:
authorNiklas Cassel <niklas.cassel@wdc.com>2023-07-31 17:34:20 +0300
committerDamien Le Moal <dlemoal@kernel.org>2023-08-02 11:45:36 +0300
commit89329c7384ef56c407269157e30e781f55c3c4d2 (patch)
tree304851d1e68d985e2a8ebd8e18c94b40be6fc7d3 /Documentation/driver-api/libata.rst
parentf810b81ce897b323e3cc5664194b92b67462d534 (diff)
downloadlinux-89329c7384ef56c407269157e30e781f55c3c4d2.tar.xz
ata: libata-core: remove ata_bus_probe()
Remove ata_bus_probe() as it is unused. Also, remove references to ata_bus_probe and port_disable in Documentation/driver-api/libata.rst, as neither exist anymore. Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com> Reviewed-by: John Garry <john.g.garry@oracle.com> Reviewed-by: Jason Yan <yanaijie@huawei.com> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Diffstat (limited to 'Documentation/driver-api/libata.rst')
-rw-r--r--Documentation/driver-api/libata.rst16
1 files changed, 0 insertions, 16 deletions
diff --git a/Documentation/driver-api/libata.rst b/Documentation/driver-api/libata.rst
index 311af516a3fd..eecb8b81e185 100644
--- a/Documentation/driver-api/libata.rst
+++ b/Documentation/driver-api/libata.rst
@@ -32,22 +32,6 @@ register blocks.
:c:type:`struct ata_port_operations <ata_port_operations>`
----------------------------------------------------------
-Disable ATA port
-~~~~~~~~~~~~~~~~
-
-::
-
- void (*port_disable) (struct ata_port *);
-
-
-Called from :c:func:`ata_bus_probe` error path, as well as when unregistering
-from the SCSI module (rmmod, hot unplug). This function should do
-whatever needs to be done to take the port out of use. In most cases,
-:c:func:`ata_port_disable` can be used as this hook.
-
-Called from :c:func:`ata_bus_probe` on a failed probe. Called from
-:c:func:`ata_scsi_release`.
-
Post-IDENTIFY device configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~