mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Kernel: Declare DMI SysFS BIOS classes as final
This commit is contained in:
parent
338b4b27eb
commit
66ff60db07
Notes:
sideshowbarker
2024-07-17 16:22:23 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/66ff60db07 Pull-request: https://github.com/SerenityOS/serenity/pull/13400
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ protected:
|
|||
BIOSSysFSComponent();
|
||||
};
|
||||
|
||||
class DMIEntryPointExposedBlob : public BIOSSysFSComponent {
|
||||
class DMIEntryPointExposedBlob final : public BIOSSysFSComponent {
|
||||
public:
|
||||
virtual StringView name() const override { return "smbios_entry_point"sv; }
|
||||
static NonnullRefPtr<DMIEntryPointExposedBlob> must_create(PhysicalAddress dmi_entry_point, size_t blob_size);
|
||||
|
@ -81,7 +81,7 @@ private:
|
|||
size_t const m_dmi_entry_point_length { 0 };
|
||||
};
|
||||
|
||||
class SMBIOSExposedTable : public BIOSSysFSComponent {
|
||||
class SMBIOSExposedTable final : public BIOSSysFSComponent {
|
||||
public:
|
||||
virtual StringView name() const override { return "DMI"sv; }
|
||||
static NonnullRefPtr<SMBIOSExposedTable> must_create(PhysicalAddress, size_t blob_size);
|
||||
|
|
Loading…
Reference in a new issue