Module Name: src
Committed By: macallan
Date: Sun Sep 28 12:57:22 UTC 2014
Modified Files:
src/sys/arch/evbarm/rpi: vcprop.h
Log Message:
the RPi wiki had the values for VCPROPTAG_SET_CURSOR_INFO and
VCPROPTAG_SET_CURSOR_STATE swapped - now they actually work
thanks jmcneill@ for having the right idea
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/evbarm/rpi/vcprop.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/evbarm/rpi/vcprop.h
diff -u src/sys/arch/evbarm/rpi/vcprop.h:1.11 src/sys/arch/evbarm/rpi/vcprop.h:1.12
--- src/sys/arch/evbarm/rpi/vcprop.h:1.11 Tue Sep 23 10:52:21 2014
+++ src/sys/arch/evbarm/rpi/vcprop.h Sun Sep 28 12:57:22 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: vcprop.h,v 1.11 2014/09/23 10:52:21 macallan Exp $ */
+/* $NetBSD: vcprop.h,v 1.12 2014/09/28 12:57:22 macallan Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -93,8 +93,8 @@ struct vcprop_tag {
#define VCPROPTAG_UNLOCKMEM 0x0003000e
#define VCPROPTAG_RELEASEMEM 0x0003000f
-#define VCPROPTAG_SET_CURSOR_INFO 0x00008011
-#define VCPROPTAG_SET_CURSOR_STATE 0x00008010
+#define VCPROPTAG_SET_CURSOR_INFO 0x00008010
+#define VCPROPTAG_SET_CURSOR_STATE 0x00008011
uint32_t vpt_len;
uint32_t vpt_rcode;