Kernel: Remove aarch64/Utils.{cpp, h} since they are not used anymore
This commit is contained in:
parent
83265b4cb2
commit
4a2dcea685
Notes:
sideshowbarker
2024-07-17 11:22:42 +09:00
Author: https://github.com/FireFox317 Commit: https://github.com/SerenityOS/serenity/commit/4a2dcea685 Pull-request: https://github.com/SerenityOS/serenity/pull/13885 Reviewed-by: https://github.com/linusg ✅
3 changed files with 0 additions and 36 deletions
|
@ -1,20 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2021, Marcin Undak <mcinek@gmail.com>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <Kernel/Arch/aarch64/RPi/UART.h>
|
|
||||||
#include <Kernel/Arch/aarch64/Utils.h>
|
|
||||||
|
|
||||||
void Prekernel::dbgln(char const* text)
|
|
||||||
{
|
|
||||||
auto& uart = Prekernel::UART::the();
|
|
||||||
uart.print_str(text);
|
|
||||||
uart.print_str("\r\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
void Prekernel::warnln(char const* text)
|
|
||||||
{
|
|
||||||
dbgln(text);
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2021, Marcin Undak <mcinek@gmail.com>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: BSD-2-Clause
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
namespace Prekernel {
|
|
||||||
|
|
||||||
// FIXME: to be replaced by real implementation from AK/Format.h
|
|
||||||
void dbgln(char const* text);
|
|
||||||
void warnln(char const* text);
|
|
||||||
|
|
||||||
}
|
|
|
@ -420,7 +420,6 @@ else()
|
||||||
Arch/aarch64/PageDirectory.cpp
|
Arch/aarch64/PageDirectory.cpp
|
||||||
Arch/aarch64/ScopedCritical.cpp
|
Arch/aarch64/ScopedCritical.cpp
|
||||||
Arch/aarch64/SmapDisabler.cpp
|
Arch/aarch64/SmapDisabler.cpp
|
||||||
Arch/aarch64/Utils.cpp
|
|
||||||
Arch/aarch64/init.cpp
|
Arch/aarch64/init.cpp
|
||||||
Arch/aarch64/vector_table.S
|
Arch/aarch64/vector_table.S
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue