Skip to content

Commit

Permalink
detect unknown linux versions,
Browse files Browse the repository at this point in the history
stylish change: remove space between func and brace

Signed-off-by: SergeySlice <sergey.slice@gmail.com>
  • Loading branch information
SergeySlice committed Apr 23, 2020
1 parent d3da5e1 commit 01f33f7
Show file tree
Hide file tree
Showing 751 changed files with 11,209 additions and 11,150 deletions.
2 changes: 1 addition & 1 deletion CloverEFI/AcpiReset/Reset.c
Expand Up @@ -212,7 +212,7 @@ InitializeReset (
&gEfiResetArchProtocolGuid, NULL,
NULL
);
// ASSERT_EFI_ERROR (Status);
// ASSERT_EFI_ERROR(Status);

return Status;
}
6 changes: 3 additions & 3 deletions CloverEFI/BiosKeyboard/AppleKey.c
Expand Up @@ -43,7 +43,7 @@ BiosKbSetAppleKeyMapDb (
&BiosKeyboardDevice->KeyMapDbIndex
);

if (!EFI_ERROR (Status)) {
if (!EFI_ERROR(Status)) {
BiosKeyboardDevice->KeyMapDb = AppleKeyMapDb;
}
return Status;
Expand Down Expand Up @@ -74,7 +74,7 @@ BiosKbAppleKeyMapDbInstallNotify (
mAppleKeyMapDbRegistration,
(VOID **)&mAppleKeyMapDb
);
if (!EFI_ERROR (Status)) {
if (!EFI_ERROR(Status)) {
BiosKbSetAppleKeyMapDb ((BIOS_KEYBOARD_DEV *)Context, mAppleKeyMapDb);
gBS->CloseEvent (Event);
}
Expand All @@ -98,7 +98,7 @@ BiosKbLocateAppleKeyMapDb (
NULL,
(VOID **)&mAppleKeyMapDb
);
if (!EFI_ERROR (Status)) {
if (!EFI_ERROR(Status)) {
BiosKbSetAppleKeyMapDb (BiosKeyboardDevice, mAppleKeyMapDb);
}
else {
Expand Down

0 comments on commit 01f33f7

Please sign in to comment.