Changeset 108794 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPkg/Drivers/GenericWatchdogDxe/GenericWatchdogDxe.c
- Timestamp:
- Mar 31, 2025 11:31:09 AM (2 weeks ago)
- svn:sync-xref-src-repo-rev:
- 168237
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-164365 /vendor/edk2/current 103735-103757,103769-103776,129194-168232
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/ArmPkg/Drivers/GenericWatchdogDxe/GenericWatchdogDxe.c
r105670 r108794 376 376 Status = mInterruptProtocol->RegisterInterruptSource ( 377 377 mInterruptProtocol, 378 FixedPcdGet32 (PcdGenericWatchdogEl2IntrNum),378 PcdGet32 (PcdGenericWatchdogEl2IntrNum), 379 379 WatchdogInterruptHandler 380 380 ); … … 385 385 Status = mInterruptProtocol->SetTriggerType ( 386 386 mInterruptProtocol, 387 FixedPcdGet32 (PcdGenericWatchdogEl2IntrNum),387 PcdGet32 (PcdGenericWatchdogEl2IntrNum), 388 388 EFI_HARDWARE_INTERRUPT2_TRIGGER_EDGE_RISING 389 389 ); … … 391 391 goto UnregisterHandler; 392 392 } 393 394 WatchdogDisable (); 393 395 394 396 // Install the Timer Architectural Protocol onto a new handle … … 414 416 ASSERT_EFI_ERROR (Status); 415 417 416 WatchdogDisable ();417 418 418 return EFI_SUCCESS; 419 419 … … 422 422 mInterruptProtocol->RegisterInterruptSource ( 423 423 mInterruptProtocol, 424 FixedPcdGet32 (PcdGenericWatchdogEl2IntrNum),424 PcdGet32 (PcdGenericWatchdogEl2IntrNum), 425 425 NULL 426 426 );
Note:
See TracChangeset
for help on using the changeset viewer.