1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:47:34 +00:00

Kernel: Fix incorrect return type on aarch64

InterruptController's model incorrectly returned a char[] instead
of a StringView.
This commit is contained in:
Filiph Sandström 2022-07-25 15:31:17 +02:00 committed by Sam Atkins
parent 44cdca04d3
commit bac4bdc5d2

View file

@ -30,7 +30,7 @@ private:
virtual StringView model() const override virtual StringView model() const override
{ {
return "Raspberry Pi Interrupt Controller"; return "Raspberry Pi Interrupt Controller"sv;
} }
InterruptControllerRegisters volatile* m_registers; InterruptControllerRegisters volatile* m_registers;