hc
2024-09-20 a36159eec6ca17402b0e146b86efaf76568dc353
kernel/arch/x86/boot/apm.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-only
12 /* -*- linux-c -*- ------------------------------------------------------- *
23 *
34 * Copyright (C) 1991, 1992 Linus Torvalds
....@@ -6,9 +7,6 @@
67 *
78 * Original APM BIOS checking by Stephen Rothwell, May 1994
89 * (sfr@canb.auug.org.au)
9
- *
10
- * This file is part of the Linux kernel, and is made available under
11
- * the terms of the GNU General Public License version 2.
1210 *
1311 * ----------------------------------------------------------------------- */
1412
....@@ -62,7 +60,7 @@
6260 intcall(0x15, &ireg, &oreg);
6361
6462 if ((oreg.eflags & X86_EFLAGS_CF) || oreg.bx != 0x504d) {
65
- /* Failure with 32-bit connect, try to disconect and ignore */
63
+ /* Failure with 32-bit connect, try to disconnect and ignore */
6664 ireg.al = 0x04;
6765 intcall(0x15, &ireg, NULL);
6866 return -1;