summaryrefslogtreecommitdiff
path: root/sys/dev/vesa/vbe.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/vesa/vbe.h')
-rw-r--r--sys/dev/vesa/vbe.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/vesa/vbe.h b/sys/dev/vesa/vbe.h
index 9196866d7a8..7248e7db734 100644
--- a/sys/dev/vesa/vbe.h
+++ b/sys/dev/vesa/vbe.h
@@ -27,12 +27,12 @@
#define KVM86_CALL_TASKVA 0x2000
/* Information contained in AH following a VBE function call */
-/* Low byte determins call support */
+/* Low byte determines call support */
#define VBECALL_SUPPORT(v) (v & 0xff)
#define VBECALL_SUPPORTED 0x4f
-/* High byte determins call sucess */
-#define VBECALL_SUCESS(v) (v >> 8 & 0xFF)
+/* High byte determines call success */
+#define VBECALL_SUCCESS(v) (v >> 8 & 0xFF)
#define VBECALL_SUCCEDED 0x00
#define VBECALL_FAILED 0x01
#define VBECALL_MISMATCH 0x02 /* BIOS SUPPORTS HW DOES NOT */