mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
c2004ce99e
Export PAVP client to work with i915 driver, for binding it uses kernel component framework. v2:drop debug prints, refactor match code to match mei_hdcp (Tomas) Signed-off-by: Vitaly Lubart <vitaly.lubart@intel.com> Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210924191452.1539378-3-alan.previn.teres.alexis@intel.com
19 lines
334 B
C
19 lines
334 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*
|
|
* Authors:
|
|
* Vitaly Lubart <vitaly.lubart@intel.com>
|
|
*/
|
|
|
|
#ifndef __MEI_PXP_H__
|
|
#define __MEI_PXP_H__
|
|
|
|
/* me_pxp_status: Enumeration of all PXP Status Codes */
|
|
enum me_pxp_status {
|
|
ME_PXP_STATUS_SUCCESS = 0x0000,
|
|
|
|
};
|
|
|
|
#endif /* __MEI_PXP_H__ */
|