mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 01:13:55 +07:00
5b6030da28
We dont need the definition of the enum port outside I915, anymore. Hence move enum port definition into I915 driver itself. v2: intel_display.h is included in intel_hdcp.h v3: enum port is declared in headers. v4: commit msg is rephrased. v5: copyright year is updated [Tomas] Signed-off-by: Ramalingam C <ramalingam.c@intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Shashank Sharma <shashank.sharma@intel.com> Reviewed-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Uma Shankar <uma.shankar@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190828164216.405-3-ramalingam.c@intel.com
25 lines
495 B
C
25 lines
495 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_SDVO_H__
|
|
#define __INTEL_SDVO_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <drm/i915_drm.h>
|
|
|
|
#include "i915_reg.h"
|
|
|
|
struct drm_i915_private;
|
|
enum pipe;
|
|
enum port;
|
|
|
|
bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
|
|
i915_reg_t sdvo_reg, enum pipe *pipe);
|
|
bool intel_sdvo_init(struct drm_i915_private *dev_priv,
|
|
i915_reg_t reg, enum port port);
|
|
|
|
#endif /* __INTEL_SDVO_H__ */
|