Loading...
Note: File does not exist in v3.5.6.
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2023-2024 Intel Corporation
4 */
5
6#ifndef _XE_OBSERVATION_H_
7#define _XE_OBSERVATION_H_
8
9#include <linux/types.h>
10
11struct drm_device;
12struct drm_file;
13
14extern u32 xe_observation_paranoid;
15
16int xe_observation_ioctl(struct drm_device *dev, void *data, struct drm_file *file);
17int xe_observation_sysctl_register(void);
18void xe_observation_sysctl_unregister(void);
19
20#endif