1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2024 Intel Corporation 4 */ 5 6 #ifndef __I9XX_DISPLAY_SR_H__ 7 #define __I9XX_DISPLAY_SR_H__ 8 9 struct intel_display; 10 11 void i9xx_display_sr_save(struct intel_display *display); 12 void i9xx_display_sr_restore(struct intel_display *display); 13 14 #endif 15