From bac4bdc5d22af8603b8902a9e4cc0ea777475e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filiph=20Sandstr=C3=B6m?= Date: Mon, 25 Jul 2022 15:31:17 +0200 Subject: [PATCH] Kernel: Fix incorrect return type on aarch64 InterruptController's model incorrectly returned a char[] instead of a StringView. --- Kernel/Arch/aarch64/RPi/InterruptController.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Arch/aarch64/RPi/InterruptController.h b/Kernel/Arch/aarch64/RPi/InterruptController.h index 6633a553fe..e6419d490d 100644 --- a/Kernel/Arch/aarch64/RPi/InterruptController.h +++ b/Kernel/Arch/aarch64/RPi/InterruptController.h @@ -30,7 +30,7 @@ private: virtual StringView model() const override { - return "Raspberry Pi Interrupt Controller"; + return "Raspberry Pi Interrupt Controller"sv; } InterruptControllerRegisters volatile* m_registers;