Linux Audio

Check our new training course

In-person Linux kernel drivers training

Jun 16-20, 2025
Register
Loading...
v5.14.15
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2020 Intel Corporation
 4 */
 5
 6#ifndef _INTEL_CURSOR_H_
 7#define _INTEL_CURSOR_H_
 8
 9enum pipe;
10struct drm_i915_private;
11struct intel_plane;
 
12
13struct intel_plane *
14intel_cursor_plane_create(struct drm_i915_private *dev_priv,
15			  enum pipe pipe);
 
 
16
17#endif
v6.13.7
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2020 Intel Corporation
 4 */
 5
 6#ifndef _INTEL_CURSOR_H_
 7#define _INTEL_CURSOR_H_
 8
 9enum pipe;
10struct drm_i915_private;
11struct intel_plane;
12struct kthread_work;
13
14struct intel_plane *
15intel_cursor_plane_create(struct drm_i915_private *dev_priv,
16			  enum pipe pipe);
17
18void intel_cursor_unpin_work(struct kthread_work *base);
19
20#endif