summaryrefslogtreecommitdiffhomepage
path: root/Private/EFIKit
diff options
context:
space:
mode:
Diffstat (limited to 'Private/EFIKit')
-rw-r--r--Private/EFIKit/EFILib.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Private/EFIKit/EFILib.hxx b/Private/EFIKit/EFILib.hxx
index 1648547b..eac2c618 100644
--- a/Private/EFIKit/EFILib.hxx
+++ b/Private/EFIKit/EFILib.hxx
@@ -15,12 +15,12 @@
inline EfiSystemTable* ST = nullptr;
inline EfiBootServices* BS = nullptr;
-namespace Detail {
+namespace EFI {
/**
@brief Stop Execution of program.
@param SystemTable EFI System Table.
*/
-Void Stop(EfiSystemTable* SystemTable) noexcept {
+inline Void Stop(EfiSystemTable* SystemTable) noexcept {
while (true) {
rt_cli();
rt_halt();
@@ -43,7 +43,7 @@ inline void KeRuntimeStop(const EfiCharType* File,
ST->ConOut->OutputString(ST->ConOut, Reason);
ST->ConOut->OutputString(ST->ConOut, L" ***\r\n");
- Detail::Stop(ST);
+ EFI::Stop(ST);
}
#ifdef __BOOTLOADER__