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 © 2021 Intel Corporation
4 */
5
6#ifndef _XE_DRV_H_
7#define _XE_DRV_H_
8
9#include <drm/drm_drv.h>
10
11#define DRIVER_NAME "xe"
12#define DRIVER_DESC "Intel Xe2 Graphics"
13
14/* Interface history:
15 *
16 * 1.1: Original.
17 */
18#define DRIVER_MAJOR 1
19#define DRIVER_MINOR 1
20#define DRIVER_PATCHLEVEL 0
21
22#endif