summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Fourdan <ofourdan@redhat.com>2023-01-04 11:52:37 +0100
committerOlivier Fourdan <ofourdan@redhat.com>2023-01-04 11:56:38 +0100
commit24c5d8f17e2afd7d4e9626ba7cdcfbab53b2fdc0 (patch)
treeafc7cb771bce71bc939300263763babd1c959154
parent511d1686a6ac3e3e0d66fb67b62620ba2a6575c8 (diff)
xfree86: Fix videodrv ABI version
Commit 5145742fb6 accidentally bumped the videodrv ABI version from 26.0 to 26.6 in one go. Change it back to 26.1 as per the documented process for minor additions. Fixes: 5145742fb6 - randr: introduce rrCrtcGetInfo DDX function Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
-rw-r--r--hw/xfree86/common/xf86Module.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86Module.h b/hw/xfree86/common/xf86Module.h
index c77eefd7e..6166e8559 100644
--- a/hw/xfree86/common/xf86Module.h
+++ b/hw/xfree86/common/xf86Module.h
@@ -74,7 +74,7 @@
* mask is 0xFFFF0000.
*/
#define ABI_ANSIC_VERSION SET_ABI_VERSION(0, 4)
-#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(26, 6)
+#define ABI_VIDEODRV_VERSION SET_ABI_VERSION(26, 1)
#define ABI_XINPUT_VERSION SET_ABI_VERSION(24, 4)
#define ABI_EXTENSION_VERSION SET_ABI_VERSION(10, 0)