xref: /linux/drivers/gpu/drm/xe/compat-i915-headers/intel_step.h (revision eb01fe7abbe2d0b38824d2a93fdb4cc3eaf2ccc1)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #ifndef __INTEL_STEP_H__
7 #define __INTEL_STEP_H__
8 
9 #include "xe_device_types.h"
10 #include "xe_step.h"
11 
12 #define intel_display_step_name xe_display_step_name
13 
14 static inline
15 const char *xe_display_step_name(struct xe_device *xe)
16 {
17 	return xe_step_name(xe->info.step.display);
18 }
19 
20 #endif /* __INTEL_STEP_H__ */
21