diff options
author | Michal Simek | 2017-11-02 15:53:56 +0100 |
---|---|---|
committer | Michal Simek | 2017-11-28 16:08:52 +0100 |
commit | e81589ea4475387670e57f5ce23465dd761edccc (patch) | |
tree | 840075f76407e4f7e867c3dfa4a96800dfca6460 /include | |
parent | dea4d2f01d3bcf5e7227a86610eec388e0186dba (diff) |
ata: Fix ahci wording
s/achi_/ahci_/g
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/ahci.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ahci.h b/include/ahci.h index 33171b7ffd6..cc36d81f98a 100644 --- a/include/ahci.h +++ b/include/ahci.h @@ -234,18 +234,18 @@ int ahci_init(void __iomem *base); int ahci_reset(void __iomem *base); /** - * achi_init_one_dm() - set up a single AHCI port + * ahci_init_one_dm() - set up a single AHCI port * * @dev: Controller to init */ -int achi_init_one_dm(struct udevice *dev); +int ahci_init_one_dm(struct udevice *dev); /** - * achi_start_ports_dm() - start all AHCI ports for a controller + * ahci_start_ports_dm() - start all AHCI ports for a controller * * @dev: Controller containing ports to start */ -int achi_start_ports_dm(struct udevice *dev); +int ahci_start_ports_dm(struct udevice *dev); /** * ahci_init_dm() - init AHCI for a controller, finding all ports |