/* SPDX-License-Identifier: MIT */ /* * Copyright © 2023 Intel Corporation */ #ifndef __INTEL_PXP_H__ #define __INTEL_PXP_H__ #include #include struct drm_gem_object; struct intel_pxp; static inline int intel_pxp_key_check(struct intel_pxp *pxp, struct drm_gem_object *obj, bool assign) { return -ENODEV; } #endif