Select the types of activity you want to include in your feed.
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 8struct xe_device; 9 10#define for_each_error_severity(i) \ 11 for (i = 0; i < DRM_XE_RAS_ERR_SEV_MAX; i++) 12 13int xe_drm_ras_init(struct xe_device *xe); 14 15#endif