summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_drm_ras.h
blob: 5cc8f0124411ab942def5e636c34cfeb11ad3b5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2026 Intel Corporation
 */
#ifndef XE_DRM_RAS_H_
#define XE_DRM_RAS_H_

struct xe_device;

#define for_each_error_severity(i)	\
	for (i = 0; i < DRM_XE_RAS_ERR_SEV_MAX; i++)

int xe_drm_ras_init(struct xe_device *xe);

#endif