Files
kernel_common_drivers/drivers/debug/main.h
T
qinglin.li da04048d61 debugfile: build debugfile with module [1/1]
PD#SWPL-94401

Problem:
build debugfile with module
build with gki_10

Solution:
build debugfile with module

Verify:
sc2

Signed-off-by: qinglin.li <qinglin.li@amlogic.com>
Change-Id: I8db0d7e81c93860cdd2ca8cbb5526e529d67da27
2022-10-19 02:18:01 -07:00

25 lines
429 B
C

/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#ifndef __AMLOGIC_DEBUG_MAIN_H
#define __AMLOGIC_DEBUG_MAIN_H
int debug_lockup_init(void);
int cpu_mhz_init(void);
#ifdef CONFIG_AMLOGIC_DEBUG_ATRACE
int meson_atrace_init(void);
#else
static inline int meson_atrace_init(void)
{
return 0;
}
#endif
int debug_file_init(void);
void debug_file_exit(void);
#endif