mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

struct intel_display will replace struct drm_i915_private as the main thing for display code. Convert the cursor code to use it. Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250206185533.32306-10-ville.syrjala@linux.intel.com
20 lines
374 B
C
20 lines
374 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _INTEL_CURSOR_H_
|
|
#define _INTEL_CURSOR_H_
|
|
|
|
enum pipe;
|
|
struct intel_display;
|
|
struct intel_plane;
|
|
struct kthread_work;
|
|
|
|
struct intel_plane *
|
|
intel_cursor_plane_create(struct intel_display *display,
|
|
enum pipe pipe);
|
|
|
|
void intel_cursor_unpin_work(struct kthread_work *base);
|
|
|
|
#endif
|