From: Geert Uytterhoeven Date: Thu, 24 Oct 2019 15:30:08 +0000 (+0200) Subject: x86/boot: Fix comment spelling X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=023f270b44cd2df0741c2c6a1587ee698d8cc7c8;p=linux.git x86/boot: Fix comment spelling Fix misspelling of "disconnect". Signed-off-by: Geert Uytterhoeven Signed-off-by: Jiri Kosina --- diff --git a/arch/x86/boot/apm.c b/arch/x86/boot/apm.c index b72fc10fc1beb..bda15f9673d55 100644 --- a/arch/x86/boot/apm.c +++ b/arch/x86/boot/apm.c @@ -60,7 +60,7 @@ int query_apm_bios(void) intcall(0x15, &ireg, &oreg); if ((oreg.eflags & X86_EFLAGS_CF) || oreg.bx != 0x504d) { - /* Failure with 32-bit connect, try to disconect and ignore */ + /* Failure with 32-bit connect, try to disconnect and ignore */ ireg.al = 0x04; intcall(0x15, &ireg, NULL); return -1;