1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 07:57:49 +00:00

Kernel: Move feature string building to ProcessorInfo

Other than a dmesgln(), ProcessorInfo is the only user of this function
and is already responsible for building other CPUID-related strings.
This commit is contained in:
Linus Groh 2022-04-03 16:47:38 +01:00 committed by Andreas Kling
parent 53a95a5347
commit afce63fffc
4 changed files with 21 additions and 22 deletions

View file

@ -128,8 +128,6 @@ class Processor {
void cpu_detect();
void cpu_setup();
NonnullOwnPtr<KString> features_string() const;
public:
Processor() = default;