mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
9d2b6fa09d
Export a getter instead of the debugfs node directly so that, other in-tree-only RAS modules can use it. Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com> Link: https://lore.kernel.org/r/20240301143748.854090-2-yazen.ghannam@amd.com
10 lines
195 B
C
10 lines
195 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __RAS_DEBUGFS_H__
|
|
#define __RAS_DEBUGFS_H__
|
|
|
|
#include <linux/debugfs.h>
|
|
|
|
struct dentry *ras_get_debugfs_root(void);
|
|
|
|
#endif /* __RAS_DEBUGFS_H__ */
|