Add separate intel_dp_hdcp.h to go with intel_dp_hdcp.c, and rename the init function intel_dp_hdcp_init() to follow naming where function prefix matches the file name. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210427114520.4740-1-jani.nikula@intel.com
16 lines
333 B
C
16 lines
333 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_DP_HDCP___
|
|
#define __INTEL_DP_HDCP___
|
|
|
|
struct intel_connector;
|
|
struct intel_digital_port;
|
|
|
|
int intel_dp_hdcp_init(struct intel_digital_port *dig_port,
|
|
struct intel_connector *intel_connector);
|
|
|
|
#endif /* __INTEL_DP_HDCP___ */
|