Commit 3675c607 authored by Jani Nikula's avatar Jani Nikula
parent bc872e30
......@@ -12,9 +12,23 @@ enum pipe;
struct drm_encoder;
struct drm_i915_private;
#ifdef I915
bool intel_crt_port_enabled(struct drm_i915_private *dev_priv,
i915_reg_t adpa_reg, enum pipe *pipe);
void intel_crt_init(struct drm_i915_private *dev_priv);
void intel_crt_reset(struct drm_encoder *encoder);
#else
static inline bool intel_crt_port_enabled(struct drm_i915_private *dev_priv,
i915_reg_t adpa_reg, enum pipe *pipe)
{
return false;
}
static inline void intel_crt_init(struct drm_i915_private *dev_priv)
{
}
static inline void intel_crt_reset(struct drm_encoder *encoder)
{
}
#endif
#endif /* __INTEL_CRT_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment