diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-10-24 17:30:08 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2020-03-17 20:52:52 +0100 |
commit | 023f270b44cd2df0741c2c6a1587ee698d8cc7c8 (patch) | |
tree | c2beedeebf5b4275ed5246a2a2b358d8fc5ceb1e /arch/x86/boot | |
parent | b6db0a7478c0a8bee635ee1d6188b146279d8c7a (diff) | |
download | linux-023f270b44cd2df0741c2c6a1587ee698d8cc7c8.tar.gz linux-023f270b44cd2df0741c2c6a1587ee698d8cc7c8.tar.bz2 linux-023f270b44cd2df0741c2c6a1587ee698d8cc7c8.zip |
x86/boot: Fix comment spelling
Fix misspelling of "disconnect".
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'arch/x86/boot')
-rw-r--r-- | arch/x86/boot/apm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/apm.c b/arch/x86/boot/apm.c index b72fc10fc1be..bda15f9673d5 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; |