diff options
| author | Ethan Nelson-Moore <enelsonmoore@gmail.com> | 2026-01-30 19:28:11 -0800 |
|---|---|---|
| committer | Damien Le Moal <dlemoal@kernel.org> | 2026-02-02 13:47:40 +0900 |
| commit | 82ef60ec084b2ea418c50fca2c8776fb8ec27067 (patch) | |
| tree | aea087d0538e92757ba5330debb5b992dd258e8f | |
| parent | 3c4d783f6922e47fc31528c3ed6a240612c4ce15 (diff) | |
ata: pata_cypress: fix typo in error message
An error message in the pata_cypress driver has a typo "mome" for
"mode". Fix it.
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
| -rw-r--r-- | drivers/ata/pata_cypress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/pata_cypress.c b/drivers/ata/pata_cypress.c index ae347b5c2871..3b0e6858d727 100644 --- a/drivers/ata/pata_cypress.c +++ b/drivers/ata/pata_cypress.c @@ -62,7 +62,7 @@ static void cy82c693_set_piomode(struct ata_port *ap, struct ata_device *adev) u32 addr; if (ata_timing_compute(adev, adev->pio_mode, &t, T, 1) < 0) { - ata_dev_err(adev, DRV_NAME ": mome computation failed.\n"); + ata_dev_err(adev, DRV_NAME ": mode computation failed.\n"); return; } |
