mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:57:35 +00:00
Kernel: Declare DMI SysFS BIOS classes as final
This commit is contained in:
parent
338b4b27eb
commit
66ff60db07
1 changed files with 2 additions and 2 deletions
|
@ -69,7 +69,7 @@ protected:
|
||||||
BIOSSysFSComponent();
|
BIOSSysFSComponent();
|
||||||
};
|
};
|
||||||
|
|
||||||
class DMIEntryPointExposedBlob : public BIOSSysFSComponent {
|
class DMIEntryPointExposedBlob final : public BIOSSysFSComponent {
|
||||||
public:
|
public:
|
||||||
virtual StringView name() const override { return "smbios_entry_point"sv; }
|
virtual StringView name() const override { return "smbios_entry_point"sv; }
|
||||||
static NonnullRefPtr<DMIEntryPointExposedBlob> must_create(PhysicalAddress dmi_entry_point, size_t blob_size);
|
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 };
|
size_t const m_dmi_entry_point_length { 0 };
|
||||||
};
|
};
|
||||||
|
|
||||||
class SMBIOSExposedTable : public BIOSSysFSComponent {
|
class SMBIOSExposedTable final : public BIOSSysFSComponent {
|
||||||
public:
|
public:
|
||||||
virtual StringView name() const override { return "DMI"sv; }
|
virtual StringView name() const override { return "DMI"sv; }
|
||||||
static NonnullRefPtr<SMBIOSExposedTable> must_create(PhysicalAddress, size_t blob_size);
|
static NonnullRefPtr<SMBIOSExposedTable> must_create(PhysicalAddress, size_t blob_size);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue