root/drivers/gpu/drm/i915/display/intel_sdvo.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   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 <drm/i915_drm.h>
  12 
  13 #include "i915_reg.h"
  14 
  15 struct drm_i915_private;
  16 enum pipe;
  17 
  18 bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
  19                              i915_reg_t sdvo_reg, enum pipe *pipe);
  20 bool intel_sdvo_init(struct drm_i915_private *dev_priv,
  21                      i915_reg_t reg, enum port port);
  22 
  23 #endif /* __INTEL_SDVO_H__ */

/* [<][>][^][v][top][bottom][index][help] */