mirror of
https://github.com/torvalds/linux.git
synced 2024-12-09 12:41:33 +00:00
63bf8301aa
Split out code related to vga switcheroo register/unregister and state handling from i915_drv.c into new i915_switcheroo.[ch] files. It's a bit difficult to draw the line how much to move to the new file from i915_drv.c, but it seemed to me keeping i915_suspend_switcheroo() and i915_resume_switcheroo() in place was the cleanest. No functional changes. Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> 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-2-jani.nikula@intel.com
15 lines
324 B
C
15 lines
324 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I915_SWITCHEROO__
|
|
#define __I915_SWITCHEROO__
|
|
|
|
struct drm_i915_private;
|
|
|
|
int i915_switcheroo_register(struct drm_i915_private *i915);
|
|
void i915_switcheroo_unregister(struct drm_i915_private *i915);
|
|
|
|
#endif /* __I915_SWITCHEROO__ */
|