Newer
Older
minerva / Kernel / Arch / aarch64 / PlatformInit.h
@minerva minerva on 13 Jul 361 bytes Initial commit
/*
 * Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/StringView.h>

namespace Kernel {

void raspberry_pi_3_4_platform_init(StringView compatible_string);
void raspberry_pi_5_platform_init(StringView compatible_string);
void virt_platform_init(StringView compatible_string);

}