brintos

brintos / linux-shallow public Read only

0
0
Text · 548 B · aed5190 Raw
21 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef __INTEL_LOAD_DETECT_H__7#define __INTEL_LOAD_DETECT_H__8 9struct drm_atomic_state;10struct drm_connector;11struct drm_modeset_acquire_ctx;12 13struct drm_atomic_state *14intel_load_detect_get_pipe(struct drm_connector *connector,15			   struct drm_modeset_acquire_ctx *ctx);16void intel_load_detect_release_pipe(struct drm_connector *connector,17				    struct drm_atomic_state *old,18				    struct drm_modeset_acquire_ctx *ctx);19 20#endif /* __INTEL_LOAD_DETECT_H__ */21