mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 21:53:28 +07:00
7fd296024c
Rename the function per Ville's suggestion. No functional changes. Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191004122019.12009-1-jani.nikula@intel.com
19 lines
538 B
C
19 lines
538 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_VGA_H__
|
|
#define __INTEL_VGA_H__
|
|
|
|
struct drm_i915_private;
|
|
|
|
void intel_vga_reset_io_mem(struct drm_i915_private *i915);
|
|
void intel_vga_disable(struct drm_i915_private *i915);
|
|
void intel_vga_redisable(struct drm_i915_private *i915);
|
|
void intel_vga_redisable_power_on(struct drm_i915_private *i915);
|
|
int intel_vga_register(struct drm_i915_private *i915);
|
|
void intel_vga_unregister(struct drm_i915_private *i915);
|
|
|
|
#endif /* __INTEL_VGA_H__ */
|