18 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/* Copyright(c) 2023 Advanced Micro Devices, Inc */3 4#ifndef _PDS_VDPA_DEBUGFS_H_5#define _PDS_VDPA_DEBUGFS_H_6 7#include <linux/debugfs.h>8 9void pds_vdpa_debugfs_create(void);10void pds_vdpa_debugfs_destroy(void);11void pds_vdpa_debugfs_add_pcidev(struct pds_vdpa_aux *vdpa_aux);12void pds_vdpa_debugfs_add_ident(struct pds_vdpa_aux *vdpa_aux);13void pds_vdpa_debugfs_add_vdpadev(struct pds_vdpa_aux *vdpa_aux);14void pds_vdpa_debugfs_del_vdpadev(struct pds_vdpa_aux *vdpa_aux);15void pds_vdpa_debugfs_reset_vdpadev(struct pds_vdpa_aux *vdpa_aux);16 17#endif /* _PDS_VDPA_DEBUGFS_H_ */18