mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Most of the soc/intel_gmch.[ch] code is i915 core specific. Split it out to i915_gmch.[ch]. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patch.msgid.link/f4f8cc931ef2a5958cebe3ca44d40aedad01626f.1763578288.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
14 lines
359 B
C
14 lines
359 B
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2025 Intel Corporation */
|
|
|
|
#ifndef __I915_GMCH_H__
|
|
#define __I915_GMCH_H__
|
|
|
|
struct drm_i915_private;
|
|
|
|
int i915_gmch_bridge_setup(struct drm_i915_private *i915);
|
|
void i915_gmch_bar_setup(struct drm_i915_private *i915);
|
|
void i915_gmch_bar_teardown(struct drm_i915_private *i915);
|
|
|
|
#endif /* __I915_GMCH_H__ */
|