mirror of
https://github.com/NVIDIA/open-gpu-kernel-modules.git
synced 2026-01-26 19:19:47 +00:00
16 lines
440 B
C
16 lines
440 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 "545.29.06"
|
|
|
|
#else
|
|
|
|
#error "nvUnixVersion.h should only be included in UNIX builds"
|
|
|
|
#endif
|
|
|
|
#endif /* __NV_UNIX_VERSION_H__ */
|