mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04:00
Implement runtime pm wrappers for xe driver and add them into display
parent interface.
v3:
- drop useless include
- drop xe_display_rpm_{get, put}_raw
v2:
- move xe_display_rpm_interface code into xe_display_rpm.c
- rename xe_rpm as xe_display_rpm
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Link: https://patch.msgid.link/20251030202836.1815680-5-jouni.hogander@intel.com
12 lines
244 B
C
12 lines
244 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2025 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_DISPLAY_RPM_H_
|
|
#define _XE_DISPLAY_RPM_H_
|
|
|
|
extern const struct intel_display_rpm_interface xe_display_rpm_interface;
|
|
|
|
#endif /* _XE_DISPLAY_RPM_H_ */
|