summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2018-01-04 09:47:07 -0800
committerAaron Plattner <aplattner@nvidia.com>2018-01-04 09:47:07 -0800
commitbbbf2dc50c337e893121bb4d8450f8f847ecb78f (patch)
tree59f46c6254f325bbe813008f311dfee92ae7d399
parenta7c843007f7c061151f5e5ede51afd735fc40b2d (diff)
390.12390.12
-rw-r--r--nvidia-cfg.h10
-rw-r--r--nvidia-xconfig.c2
-rw-r--r--version.mk2
3 files changed, 11 insertions, 3 deletions
diff --git a/nvidia-cfg.h b/nvidia-cfg.h
index f82427f..41c7a54 100644
--- a/nvidia-cfg.h
+++ b/nvidia-cfg.h
@@ -415,7 +415,7 @@ NvCfgGSyncDeviceType nvCfgGetGSyncDeviceType(NvCfgGSyncHandle handle);
/*
- * nvCfgGetGSyncDeviceFirmwareVersion() - returns the firmware version of
+ * nvCfgGetGSyncDeviceFirmwareVersion() - returns the firmware major version of
* the GSync device referenced by handle.
*/
@@ -423,6 +423,14 @@ int nvCfgGetGSyncDeviceFirmwareVersion(NvCfgGSyncHandle handle);
/*
+ * nvCfgGetGSyncDeviceFirmwareMinorVersion() - returns the firmware minor
+ * version of the GSync device referenced by handle.
+ */
+
+int nvCfgGetGSyncDeviceFirmwareMinorVersion(NvCfgGSyncHandle handle);
+
+
+/*
* nvCfgFlashGSyncDevice() - flashes the GSync device referenced by handle.
* format contains the firmware format, newFirmwareImage contains the
* new firmware image to be flashed, and size contains the size of
diff --git a/nvidia-xconfig.c b/nvidia-xconfig.c
index 8e7a40a..fc007b3 100644
--- a/nvidia-xconfig.c
+++ b/nvidia-xconfig.c
@@ -333,7 +333,7 @@ static void parse_commandline(Options *op, int argc, char *argv[])
break;
}
- if (intval < 0 || intval > 13) {
+ if (intval < 0 || intval > 14) {
fprintf(stderr, "\n");
fprintf(stderr, "Invalid stereo: %d.\n", intval);
fprintf(stderr, "\n");
diff --git a/version.mk b/version.mk
index 788d9bc..e86b0e6 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 387.34
+NVIDIA_VERSION = 390.12