1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6#ifndef __INTEL_SDVO_H__ 7#define __INTEL_SDVO_H__ 8 9#include <linux/types.h> 10 11#include "i915_reg.h" 12 13struct drm_i915_private; 14enum pipe; 15enum port; 16 17bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv, 18 i915_reg_t sdvo_reg, enum pipe *pipe); 19bool intel_sdvo_init(struct drm_i915_private *dev_priv, 20 i915_reg_t reg, enum port port); 21 22#endif /* __INTEL_SDVO_H__ */ 23