mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
d70741d666
PD#SWPL-99041 Problem: reconstruct dsp host driver Solution: config CONFIG_AMLOGIC_MCU_DRIVER to enable mcu driver the new driver support multiple dsp/m4 cores Verify: a1/c1/c2/sc2/t3/t3x/t7/t7c Change-Id: Ib1e666e615260bb5b7377a18eeaaf8daa65de86f Signed-off-by: Liming Xue <liming.xue@amlogic.com>
16 lines
394 B
C
16 lines
394 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __SYSFS_H
|
|
#define __SYSFS_H
|
|
|
|
void host_create_device_files(struct device *dev);
|
|
void host_destroy_device_files(struct device *dev);
|
|
void host_create_debugfs_files(struct host_module *host);
|
|
void host_destroy_debugfs_files(struct host_module *host);
|
|
|
|
#endif /*__SYSFS_H*/
|
|
|