aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-06-15 09:50:50 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-06-15 09:52:11 +0200
commit249ef8dc8a47a40a2b28156136d3e131caf71183 (patch)
treeb31f97e08063a9f0eea86a5c446d1f6715046325 /arch/x86_64
parent13a297d6946c39110372d178432ca5d98845c0bf (diff)
downloadkernel-249ef8dc8a47a40a2b28156136d3e131caf71183.tar.xz
kernel-249ef8dc8a47a40a2b28156136d3e131caf71183.zip
build: configure naming rule checks
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/arch/boot/ld.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86_64/arch/boot/ld.hpp b/arch/x86_64/arch/boot/ld.hpp
index 988723d..a8b83d6 100644
--- a/arch/x86_64/arch/boot/ld.hpp
+++ b/arch/x86_64/arch/boot/ld.hpp
@@ -27,33 +27,33 @@ namespace arch::boot
//! This symbol marks the start of the kernel image in physical memory.
//!
//! @see _end_physical
- extern std::byte _start_physical;
+ extern std::byte _start_physical; // NOLINT(readability-identifier-naming)
//! The first byte after the loaded kernel image.
//!
//! This symbol marks the end of the kernel image in physical memory.
//!
//! @see _start_physical
- extern std::byte _end_physical;
+ extern std::byte _end_physical; // NOLINT(readability-identifier-naming)
//! The first byte of the loaded kernel image in the virtual address space.
//!
//! This symbol and marks the start of the kernel image in virtual memory.
//!
//! @see _end_virtual
- extern std::byte _start_virtual;
+ extern std::byte _start_virtual; // NOLINT(readability-identifier-naming)
//! The first byte after the loaded kernel image in the virtual address space.
//!
//! This symbol marks the end of the kernel image in virtual memory.
//!
//! @see _start_virtual
- extern std::byte _end_virtual;
+ extern std::byte _end_virtual; // NOLINT(readability-identifier-naming)
//! The first byte of the kernel's virtual address space.
//!
//! This symbol marks beginning of the kernel virtual address space.
- extern std::byte TEACHOS_VMA;
+ extern std::byte TEACHOS_VMA; // NOLINT(readability-identifier-naming)
}
} // namespace arch::boot