linux/drivers/gpu/drm/i915/display/intel_tv.h
Jani Nikula ab0b0eb5c8 drm/i915/tv: convert to struct intel_display
Going forward, struct intel_display shall replace struct
drm_i915_private as the main display device data pointer type. Convert
intel_tv.[ch] to struct intel_display.

Some stragglers are left behind where needed.

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/04b1c8d095a52fb817876acdab4e9139d909f306.1724342644.git.jani.nikula@intel.com
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
2024-08-23 11:51:45 +03:00

19 lines
325 B
C

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