cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

intel_pxp_debugfs.h (430B)


      1/* SPDX-License-Identifier: MIT */
      2/*
      3 * Copyright © 2021 Intel Corporation
      4 */
      5
      6#ifndef __INTEL_PXP_DEBUGFS_H__
      7#define __INTEL_PXP_DEBUGFS_H__
      8
      9struct intel_pxp;
     10struct dentry;
     11
     12#ifdef CONFIG_DRM_I915_PXP
     13void intel_pxp_debugfs_register(struct intel_pxp *pxp, struct dentry *root);
     14#else
     15static inline void
     16intel_pxp_debugfs_register(struct intel_pxp *pxp, struct dentry *root)
     17{
     18}
     19#endif
     20
     21#endif /* __INTEL_PXP_DEBUGFS_H__ */