mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
All the places that use __to_intel_display() now get passed a struct intel_display pointer, and the transitional adaptation macro has served its purpose. Remove the macro. Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Link: https://lore.kernel.org/r/d2c4a5aab3d69cec6f0640eed157a97531bd72f2.1754499175.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
17 lines
391 B
C
17 lines
391 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2024 Intel Corporation */
|
|
|
|
/*
|
|
* This header is for transitional struct intel_display conversion helpers only.
|
|
*/
|
|
|
|
#ifndef __INTEL_DISPLAY_CONVERSION__
|
|
#define __INTEL_DISPLAY_CONVERSION__
|
|
|
|
struct drm_device;
|
|
struct intel_display;
|
|
|
|
struct intel_display *__drm_to_display(struct drm_device *drm);
|
|
|
|
#endif /* __INTEL_DISPLAY_CONVERSION__ */
|