Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.2 21 lines 482 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2019 Intel Corporation 4 */ 5 6#ifndef __INTEL_CRT_H__ 7#define __INTEL_CRT_H__ 8 9#include "i915_reg.h" 10 11enum pipe; 12struct drm_encoder; 13struct drm_i915_private; 14struct drm_i915_private; 15 16bool intel_crt_port_enabled(struct drm_i915_private *dev_priv, 17 i915_reg_t adpa_reg, enum pipe *pipe); 18void intel_crt_init(struct drm_i915_private *dev_priv); 19void intel_crt_reset(struct drm_encoder *encoder); 20 21#endif /* __INTEL_CRT_H__ */