blob: d56065f22655426d975fffc9f544d8b8847fa074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: MIT
/* Copyright © 2024 Intel Corporation */
#include "i915_drv.h"
#include "intel_display_conversion.h"
static struct intel_display *__i915_to_display(struct drm_i915_private *i915)
{
return i915->display;
}
struct intel_display *__drm_to_display(struct drm_device *drm)
{
return __i915_to_display(to_i915(drm));
}
|