summaryrefslogtreecommitdiffhomepage
path: root/Kernel/FirmwareKit/EFI
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/FirmwareKit/EFI')
-rw-r--r--Kernel/FirmwareKit/EFI/API.hxx10
-rw-r--r--Kernel/FirmwareKit/EFI/EFI.hxx10
2 files changed, 10 insertions, 10 deletions
diff --git a/Kernel/FirmwareKit/EFI/API.hxx b/Kernel/FirmwareKit/EFI/API.hxx
index 37781f23..8e8183d6 100644
--- a/Kernel/FirmwareKit/EFI/API.hxx
+++ b/Kernel/FirmwareKit/EFI/API.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -69,10 +69,10 @@ Bascially frees everything we have in the EFI side.
}
/***
- * @brief Throw an error, stop execution as well.
- * @param ErrorCode error code to be print.
- * @param Reason reason to be print.
- */
+ * @brief Throw an error, stop execution as well.
+ * @param ErrorCode error code to be print.
+ * @param Reason reason to be print.
+ */
inline void ThrowError(const EfiCharType* ErrorCode,
const EfiCharType* Reason) noexcept
{
diff --git a/Kernel/FirmwareKit/EFI/EFI.hxx b/Kernel/FirmwareKit/EFI/EFI.hxx
index 99e4bd0d..2e1ef4d6 100644
--- a/Kernel/FirmwareKit/EFI/EFI.hxx
+++ b/Kernel/FirmwareKit/EFI/EFI.hxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -755,11 +755,11 @@ typedef struct EfiTime
struct EfiFileInfo final
{
/// @brief Structure size.
- UInt64 Size;
+ UInt64 Size;
/// @brief File size.
- UInt64 FileSize;
+ UInt64 FileSize;
/// @brief Physical size on disk.
- UInt64 PhysicalSize;
+ UInt64 PhysicalSize;
/// @brief Create time.
EfiTime CreateTime;
/// @brief Last access time.
@@ -767,7 +767,7 @@ struct EfiFileInfo final
/// @brief Edit time.
EfiTime EditTime;
/// @brief Attributes.
- UInt64 Attribute;
+ UInt64 Attribute;
/// @brief VLA file name.
WideChar FileName[1];
};