xref: /linux/drivers/gpu/drm/xe/xe_drv.h (revision 2c1ed907520c50326b8f604907a8478b27881a2e)
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 Xe 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
23