mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
Populate new per SR-IOV function debugfs directories with next level directories that represent tiles. There are no files yet, but we will continue updating that tree in upcoming patches. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Link: https://lore.kernel.org/r/20250928140029.198847-4-michal.wajdeczko@intel.com
16 lines
312 B
C
16 lines
312 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2025 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_TILE_SRIOV_PF_DEBUGFS_H_
|
|
#define _XE_TILE_SRIOV_PF_DEBUGFS_H_
|
|
|
|
struct dentry;
|
|
struct xe_tile;
|
|
|
|
void xe_tile_sriov_pf_debugfs_populate(struct xe_tile *tile, struct dentry *parent,
|
|
unsigned int vfid);
|
|
|
|
#endif
|