Skip to content

Commit e5a8973

Browse files
committed
TerminalDxe/Terminal.c: don't skip hotpluggable devices
Signed-off-by: Filip Lewinski <[email protected]>
1 parent 58358c7 commit e5a8973

File tree

1 file changed

+2
-2
lines changed
  • MdeModulePkg/Universal/Console/TerminalDxe

1 file changed

+2
-2
lines changed

MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,15 +521,15 @@ TerminalDriverBindingStart (
521521
return Status;
522522
}
523523

524-
if (!IsHotPlugDevice (ParentDevicePath)) {
524+
// if (!IsHotPlugDevice (ParentDevicePath)) {
525525
//
526526
// if the serial device is a hot plug device, do not update the
527527
// ConInDev, ConOutDev, and StdErrDev variables.
528528
//
529529
TerminalUpdateConsoleDevVariable (EFI_CON_IN_DEV_VARIABLE_NAME, ParentDevicePath);
530530
TerminalUpdateConsoleDevVariable (EFI_CON_OUT_DEV_VARIABLE_NAME, ParentDevicePath);
531531
TerminalUpdateConsoleDevVariable (EFI_ERR_OUT_DEV_VARIABLE_NAME, ParentDevicePath);
532-
}
532+
// }
533533

534534
//
535535
// Do not create any child for END remaining device path.

0 commit comments

Comments
 (0)