Commit 5f9b5375 authored by Heinrich Schuchardt's avatar Heinrich Schuchardt
Browse files

efi_loader: missing parentheses after if



IS_ENABLED() contains parentheses. But we should still put extra
parentheses around it in an if statement for readability.
Signed-off-by: default avatarHeinrich Schuchardt <xypron.glpk@gmx.de>
parent ab865a8e
...@@ -2000,7 +2000,7 @@ static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle, ...@@ -2000,7 +2000,7 @@ static efi_status_t EFIAPI efi_exit_boot_services(efi_handle_t image_handle,
} }
if (!efi_st_keep_devices) { if (!efi_st_keep_devices) {
if IS_ENABLED(CONFIG_USB_DEVICE) if (IS_ENABLED(CONFIG_USB_DEVICE))
udc_disconnect(); udc_disconnect();
board_quiesce_devices(); board_quiesce_devices();
dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL); dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment