Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.14 12 lines 256 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright (C) 2020 Linaro Ltd. */ 3 4#ifndef __VENUS_DBGFS_H__ 5#define __VENUS_DBGFS_H__ 6 7struct venus_core; 8 9void venus_dbgfs_init(struct venus_core *core); 10void venus_dbgfs_deinit(struct venus_core *core); 11 12#endif