summaryrefslogtreecommitdiffhomepage
path: root/Boot/Source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-05-19 19:13:03 +0200
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-05-19 19:13:03 +0200
commitaad2c069563a3e7318b575216db6deb313445f2c (patch)
tree2ba42b767473bebdca9d2538d120f0b4d82194e4 /Boot/Source
parentc0428f8e5feba9573e572a1a1b3c66cfa1f29108 (diff)
MHR-23: Fix run_format.sh, inl files needs to be formated as well.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Boot/Source')
-rw-r--r--Boot/Source/HEL/AMD64/BootAHCI.cxx2
-rw-r--r--Boot/Source/HEL/AMD64/BootATA.cxx16
-rw-r--r--Boot/Source/HEL/AMD64/BootFileReader.cxx14
-rw-r--r--Boot/Source/HEL/AMD64/BootMain.cxx4
-rw-r--r--Boot/Source/HEL/AMD64/BootPlatform.cxx2
-rw-r--r--Boot/Source/HEL/AMD64/BootString.cxx8
-rw-r--r--Boot/Source/HEL/AMD64/BootTextWriter.cxx8
-rw-r--r--Boot/Source/HEL/AMD64/New+Delete.cxx2
-rw-r--r--Boot/Source/HEL/AMD64/Support.cxx2
9 files changed, 29 insertions, 29 deletions
diff --git a/Boot/Source/HEL/AMD64/BootAHCI.cxx b/Boot/Source/HEL/AMD64/BootAHCI.cxx
index 6676f660..d60b91fd 100644
--- a/Boot/Source/HEL/AMD64/BootAHCI.cxx
+++ b/Boot/Source/HEL/AMD64/BootAHCI.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Boot/Source/HEL/AMD64/BootATA.cxx b/Boot/Source/HEL/AMD64/BootATA.cxx
index 499596ca..c82cb2ea 100644
--- a/Boot/Source/HEL/AMD64/BootATA.cxx
+++ b/Boot/Source/HEL/AMD64/BootATA.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -202,9 +202,9 @@ BootDeviceATA::operator bool()
}
/**
- @brief Read Buf from disk
- @param Sz Sector size
- @param Buf buffer
+ @brief Read Buf from disk
+ @param Sz Sector size
+ @param Buf buffer
*/
BootDeviceATA& BootDeviceATA::Read(CharacterTypeUTF8* Buf, const SizeT& SectorSz)
{
@@ -228,9 +228,9 @@ BootDeviceATA& BootDeviceATA::Read(CharacterTypeUTF8* Buf, const SizeT& SectorSz
}
/**
- @brief Write Buf into disk
- @param Sz Sector size
- @param Buf buffer
+ @brief Write Buf into disk
+ @param Sz Sector size
+ @param Buf buffer
*/
BootDeviceATA& BootDeviceATA::Write(CharacterTypeUTF8* Buf, const SizeT& SectorSz)
{
@@ -263,7 +263,7 @@ BootDeviceATA::ATATrait& BootDeviceATA::Leak()
}
/***
- @brief Getter, gets the number of sectors inside the drive.
+ @brief Getter, gets the number of sectors inside the drive.
*/
SizeT BootDeviceATA::GetSectorsCount() noexcept
{
diff --git a/Boot/Source/HEL/AMD64/BootFileReader.cxx b/Boot/Source/HEL/AMD64/BootFileReader.cxx
index 61adc4f3..7ec6b7ab 100644
--- a/Boot/Source/HEL/AMD64/BootFileReader.cxx
+++ b/Boot/Source/HEL/AMD64/BootFileReader.cxx
@@ -1,10 +1,10 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
- File: FileReader.cxx
- Purpose: New Boot FileReader,
- Read complete file and store it in a buffer.
+ File: FileReader.cxx
+ Purpose: New Boot FileReader,
+ Read complete file and store it in a buffer.
------------------------------------------- */
@@ -29,7 +29,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
/***
- @brief File Reader constructor.
+ @brief File Reader constructor.
*/
BFileReader::BFileReader(const CharacterTypeUTF16* path,
EfiHandlePtr ImageHandle)
@@ -111,8 +111,8 @@ BFileReader::~BFileReader()
}
/**
- @brief this reads all of the buffer.
- @param until read until size is reached.
+ @brief this reads all of the buffer.
+ @param until read until size is reached.
*/
Void BFileReader::ReadAll(SizeT until, SizeT chunk)
{
diff --git a/Boot/Source/HEL/AMD64/BootMain.cxx b/Boot/Source/HEL/AMD64/BootMain.cxx
index 649596b4..f58709be 100644
--- a/Boot/Source/HEL/AMD64/BootMain.cxx
+++ b/Boot/Source/HEL/AMD64/BootMain.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
@@ -31,7 +31,7 @@ STATIC EfiGUID kGopGuid;
EXTERN_C Void hal_init_platform(HEL::HandoverInformationHeader* HIH);
/**
- @brief Finds and stores the GOP.
+ @brief Finds and stores the GOP.
*/
STATIC Void CheckAndFindFramebuffer() noexcept
diff --git a/Boot/Source/HEL/AMD64/BootPlatform.cxx b/Boot/Source/HEL/AMD64/BootPlatform.cxx
index 9d125ec6..866c4839 100644
--- a/Boot/Source/HEL/AMD64/BootPlatform.cxx
+++ b/Boot/Source/HEL/AMD64/BootPlatform.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Boot/Source/HEL/AMD64/BootString.cxx b/Boot/Source/HEL/AMD64/BootString.cxx
index a93943cf..54ab2c64 100644
--- a/Boot/Source/HEL/AMD64/BootString.cxx
+++ b/Boot/Source/HEL/AMD64/BootString.cxx
@@ -1,11 +1,11 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
- File: String.cxx
- Purpose: NewBoot string library
+ File: String.cxx
+ Purpose: NewBoot string library
- Revision History:
+ Revision History:
diff --git a/Boot/Source/HEL/AMD64/BootTextWriter.cxx b/Boot/Source/HEL/AMD64/BootTextWriter.cxx
index 30c328ad..90d12f3d 100644
--- a/Boot/Source/HEL/AMD64/BootTextWriter.cxx
+++ b/Boot/Source/HEL/AMD64/BootTextWriter.cxx
@@ -1,11 +1,11 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
- File: String.cxx
- Purpose: NewBoot string library
+ File: String.cxx
+ Purpose: NewBoot string library
- Revision History:
+ Revision History:
diff --git a/Boot/Source/HEL/AMD64/New+Delete.cxx b/Boot/Source/HEL/AMD64/New+Delete.cxx
index 3316ac1d..6c025646 100644
--- a/Boot/Source/HEL/AMD64/New+Delete.cxx
+++ b/Boot/Source/HEL/AMD64/New+Delete.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */
diff --git a/Boot/Source/HEL/AMD64/Support.cxx b/Boot/Source/HEL/AMD64/Support.cxx
index 12c136f8..22b01280 100644
--- a/Boot/Source/HEL/AMD64/Support.cxx
+++ b/Boot/Source/HEL/AMD64/Support.cxx
@@ -1,6 +1,6 @@
/* -------------------------------------------
- Copyright SoftwareLabs
+ Copyright SoftwareLabs
------------------------------------------- */