xref: /linux/drivers/gpu/drm/xe/xe_drm_ras.h (revision 0fc8f6200d2313278fbf4539bbab74677c685531)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2026 Intel Corporation
4  */
5 #ifndef XE_DRM_RAS_H_
6 #define XE_DRM_RAS_H_
7 
8 struct xe_device;
9 
10 #define for_each_error_severity(i)	\
11 	for (i = 0; i < DRM_XE_RAS_ERR_SEV_MAX; i++)
12 
13 int xe_drm_ras_init(struct xe_device *xe);
14 
15 #endif
16