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

Going forward, struct intel_display is the main display device data pointer. Convert intel_modeset_setup.[ch] to struct intel_display. Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Link: https://lore.kernel.org/r/21d51387a36f027313a0687d09a14586eb8f71a6.1744222449.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
15 lines
355 B
C
15 lines
355 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_MODESET_SETUP_H__
|
|
#define __INTEL_MODESET_SETUP_H__
|
|
|
|
struct drm_modeset_acquire_ctx;
|
|
struct intel_display;
|
|
|
|
void intel_modeset_setup_hw_state(struct intel_display *display,
|
|
struct drm_modeset_acquire_ctx *ctx);
|
|
|
|
#endif /* __INTEL_MODESET_SETUP_H__ */
|