intel_sdvo.h revision 1.2
1/* $NetBSD: intel_sdvo.h,v 1.2 2021/12/18 23:45:30 riastradh Exp $ */ 2 3/* SPDX-License-Identifier: MIT */ 4/* 5 * Copyright © 2019 Intel Corporation 6 */ 7 8#ifndef __INTEL_SDVO_H__ 9#define __INTEL_SDVO_H__ 10 11#include <linux/types.h> 12 13#include <drm/i915_drm.h> 14 15#include "i915_reg.h" 16 17struct drm_i915_private; 18enum pipe; 19enum port; 20 21bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv, 22 i915_reg_t sdvo_reg, enum pipe *pipe); 23bool intel_sdvo_init(struct drm_i915_private *dev_priv, 24 i915_reg_t reg, enum port port); 25 26#endif /* __INTEL_SDVO_H__ */ 27