19 lines
522 B
C
Executable file
19 lines
522 B
C
Executable file
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Samsung Exynos SoC series dsp driver
|
|
*
|
|
* Copyright (c) 2020 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com/
|
|
*/
|
|
|
|
#ifndef __HW_COMMON_DSP_HW_COMMON_DEBUG_H__
|
|
#define __HW_COMMON_DSP_HW_COMMON_DEBUG_H__
|
|
|
|
#include "dsp-hw-debug.h"
|
|
|
|
int dsp_hw_common_debug_probe(struct dsp_hw_debug *dbg, void *sys, void *root);
|
|
void dsp_hw_common_debug_remove(struct dsp_hw_debug *dbg);
|
|
|
|
int dsp_hw_common_debug_set_ops(struct dsp_hw_debug *dbg, const void *ops);
|
|
|
|
#endif
|