mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-28 16:23:30 +00:00

The xe driver is the official driver for Intel Xe2 and later, while
maintaining experimental support for earlier GPUs. Reword the help
message accordingly.
Reviewed-by: Maarten Lankhorst <dev@lankhorst.se>
Link: https://lore.kernel.org/r/20250611-xe-kconfig-help-v1-1-8bcc6b47d11a@intel.com
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
(cherry picked from commit 1488a3089d
)
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
23 lines
347 B
C
23 lines
347 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _XE_DRV_H_
|
|
#define _XE_DRV_H_
|
|
|
|
#include <drm/drm_drv.h>
|
|
|
|
#define DRIVER_NAME "xe"
|
|
#define DRIVER_DESC "Intel Xe2 Graphics"
|
|
|
|
/* Interface history:
|
|
*
|
|
* 1.1: Original.
|
|
*/
|
|
#define DRIVER_MAJOR 1
|
|
#define DRIVER_MINOR 1
|
|
#define DRIVER_PATCHLEVEL 0
|
|
|
|
#endif
|