15 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef DEBUGFS_HUC_H7#define DEBUGFS_HUC_H8 9struct intel_huc;10struct dentry;11 12void intel_huc_debugfs_register(struct intel_huc *huc, struct dentry *root);13 14#endif /* DEBUGFS_HUC_H */15