Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2025 Intel Corporation
4 */
5#ifndef XE_HW_ERROR_H_
6#define XE_HW_ERROR_H_
7
8#include <linux/types.h>
9
10struct xe_tile;
11struct xe_device;
12
13void xe_hw_error_irq_handler(struct xe_tile *tile, const u32 master_ctl);
14void xe_hw_error_init(struct xe_device *xe);
15#endif