summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_drm_ras.h
blob: 365c70e93e82fd67b76a0f383d5785e86f6f47a4 (plain) (blame)
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