mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2025-07-23 15:10:35 +02:00
16 lines
441 B
C
16 lines
441 B
C
#ifndef __NV_UNIX_VERSION_H__
|
|
#define __NV_UNIX_VERSION_H__
|
|
|
|
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
|
|
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
|
|
|
|
#define NV_VERSION_STRING "570.133.20"
|
|
|
|
#else
|
|
|
|
#error "nvUnixVersion.h should only be included in UNIX builds"
|
|
|
|
#endif
|
|
|
|
#endif /* __NV_UNIX_VERSION_H__ */
|