The last user of intel_dp_pack_aux() outside intel_dp_aux.c got removed
in commit ad26451a79
("drm/i915/display: Drop PSR support from HSW and
BDW"). Make the function static again.
Rename the pack/unpack functions to follow the usual naming conventions
while at it.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220112105703.1151391-1-jani.nikula@intel.com
14 lines
295 B
C
14 lines
295 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020-2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_DP_AUX_H__
|
|
#define __INTEL_DP_AUX_H__
|
|
|
|
struct intel_dp;
|
|
|
|
void intel_dp_aux_fini(struct intel_dp *intel_dp);
|
|
void intel_dp_aux_init(struct intel_dp *intel_dp);
|
|
|
|
#endif /* __INTEL_DP_AUX_H__ */
|