Linux Audio

Check our new training course

Linux BSP development engineering services

Need help to port Linux and bootloaders to your hardware?
Loading...
Note: File does not exist in v4.6.
 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
15struct drm_i915_private;
16enum pipe;
17
18bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
19			     i915_reg_t sdvo_reg, enum pipe *pipe);
20bool intel_sdvo_init(struct drm_i915_private *dev_priv,
21		     i915_reg_t reg, enum port port);
22
23#endif /* __INTEL_SDVO_H__ */