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 is the main device data structure for display. Switch to it. Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: Mika Kahola <mika.kahola@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20241126101222.2671224-2-jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
14 lines
293 B
C
14 lines
293 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2024 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __I9XX_DISPLAY_SR_H__
|
|
#define __I9XX_DISPLAY_SR_H__
|
|
|
|
struct intel_display;
|
|
|
|
void i9xx_display_sr_save(struct intel_display *display);
|
|
void i9xx_display_sr_restore(struct intel_display *display);
|
|
|
|
#endif
|