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 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>
19 lines
325 B
C
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__ */
|