speakup: Fix spelling of "re-enable"

Detected using codespell.

Signed-off-by: Bastien Nocera <hadess@hadess.net>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Link: https://patch.msgid.link/20260531230804.254962-12-samuel.thibault@ens-lyon.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bastien Nocera 2026-06-01 01:08:00 +02:00 committed by Greg Kroah-Hartman
parent 7955022a98
commit 255418300d
2 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ void speakup_fake_down_arrow(void)
input_sync(virt_keyboard);
__this_cpu_write(reporting_keystroke, false);
/* reenable preemption */
/* re-enable preemption */
preempt_enable();
/* reenable keyboard interrupts */
/* re-enable keyboard interrupts */
local_irq_restore(flags);
}

View File

@ -163,7 +163,7 @@ int spk_synth_is_alive_restart(struct spk_synth *synth)
/* restart */
synth->alive = 1;
synth_printf("%s", synth->init);
return 2; /* reenabled */
return 2; /* re-enabled */
}
pr_warn("%s: can't restart synth\n", synth->long_name);
return 0;