mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

struct intel_display will replace struct drm_i915_private as the main thing for display code. Convert the VGA code to use it (as much as possible at this stage). Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240906143306.15937-5-ville.syrjala@linux.intel.com Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
19 lines
535 B
C
19 lines
535 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_VGA_H__
|
|
#define __INTEL_VGA_H__
|
|
|
|
struct intel_display;
|
|
|
|
void intel_vga_reset_io_mem(struct intel_display *display);
|
|
void intel_vga_disable(struct intel_display *display);
|
|
void intel_vga_redisable(struct intel_display *display);
|
|
void intel_vga_redisable_power_on(struct intel_display *display);
|
|
int intel_vga_register(struct intel_display *display);
|
|
void intel_vga_unregister(struct intel_display *display);
|
|
|
|
#endif /* __INTEL_VGA_H__ */
|