linux/drivers/gpu/drm/i915/display/intel_dvo.h
Jani Nikula 87ec114e09 drm/i915/dvo: convert intel_dvo.[ch] to struct intel_display
Going forward, struct intel_display is the main display device data
pointer. Convert intel_dvo.[ch] to struct intel_display.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://lore.kernel.org/r/a78b5c8d0030957523eb467401b06e2d290cf14d.1742554320.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2025-03-25 11:27:40 +02:00

19 lines
330 B
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2019 Intel Corporation
*/
#ifndef __INTEL_DVO_H__
#define __INTEL_DVO_H__
struct intel_display;
#ifdef I915
void intel_dvo_init(struct intel_display *display);
#else
static inline void intel_dvo_init(struct intel_display *display)
{
}
#endif
#endif /* __INTEL_DVO_H__ */