kernel-brax3-ubuntu-touch/drivers/misc/mediatek/apusys/apusys_rv/apu_debug.c
erascape f319b992b1 kernel-5.15: Initial import brax3 UT kernel
* halium configs enabled

Signed-off-by: erascape <erascape@proton.me>
2025-09-23 15:17:10 +00:00

25 lines
359 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2020 MediaTek Inc.
*/
#include "apu.h"
#include "sw_logger.h"
#include "hw_logger.h"
int apu_debug_init(struct mtk_apu *apu)
{
sw_logger_ipi_init(apu);
hw_logger_ipi_init(apu);
return 0;
}
void apu_debug_remove(struct mtk_apu *apu)
{
sw_logger_ipi_remove(apu);
hw_logger_ipi_remove(apu);
}