Skip to content

Commit d911fe6

Browse files
zfellowesbp3tk0v
authored andcommitted
x86/boot: Clean up whitespace in a20.c
Remove trailing whitespace on empty lines. No functional changes. [ bp: Massage commit message. ] Signed-off-by: Harry Fellowes <harryfellowes1@gmail.com> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Link: https://patch.msgid.link/20250825192832.6444-3-harryfellowes1@gmail.com
1 parent 3d1f108 commit d911fe6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

arch/x86/boot/a20.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,29 +135,29 @@ int enable_a20(void)
135135
(legacy free, etc.) */
136136
if (a20_test_short())
137137
return 0;
138-
138+
139139
/* Next, try the BIOS (INT 0x15, AX=0x2401) */
140140
enable_a20_bios();
141141
if (a20_test_short())
142142
return 0;
143-
143+
144144
/* Try enabling A20 through the keyboard controller */
145145
kbc_err = empty_8042();
146146

147147
if (a20_test_short())
148148
return 0; /* BIOS worked, but with delayed reaction */
149-
149+
150150
if (!kbc_err) {
151151
enable_a20_kbc();
152152
if (a20_test_long())
153153
return 0;
154154
}
155-
155+
156156
/* Finally, try enabling the "fast A20 gate" */
157157
enable_a20_fast();
158158
if (a20_test_long())
159159
return 0;
160160
}
161-
161+
162162
return -1;
163163
}

0 commit comments

Comments
 (0)