28 lines
492 B
C
28 lines
492 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_PXP_H__
|
|
#define __INTEL_PXP_H__
|
|
|
|
#include <linux/errno.h>
|
|
#include <linux/types.h>
|
|
|
|
struct drm_i915_gem_object;
|
|
struct intel_pxp;
|
|
|
|
static inline int intel_pxp_key_check(struct intel_pxp *pxp,
|
|
struct drm_i915_gem_object *obj,
|
|
bool assign)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
|
|
static inline bool
|
|
i915_gem_object_is_protected(const struct drm_i915_gem_object *obj)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
#endif
|