Module Name: src
Committed By: macallan
Date: Wed Jun 29 05:00:06 UTC 2011
Modified Files:
src/sys/dev/wscons: wsconsio.h
Log Message:
make the EDID buffer pointer void *
To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/wscons/wsconsio.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/dev/wscons/wsconsio.h
diff -u src/sys/dev/wscons/wsconsio.h:1.98 src/sys/dev/wscons/wsconsio.h:1.99
--- src/sys/dev/wscons/wsconsio.h:1.98 Wed Jun 29 04:50:32 2011
+++ src/sys/dev/wscons/wsconsio.h Wed Jun 29 05:00:06 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: wsconsio.h,v 1.98 2011/06/29 04:50:32 macallan Exp $ */
+/* $NetBSD: wsconsio.h,v 1.99 2011/06/29 05:00:06 macallan Exp $ */
/*
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
@@ -577,7 +577,7 @@
struct wsdisplayio_edid_info {
uint32_t buffer_size;
uint32_t data_size;
- uint8_t *edid_data;
+ void *edid_data;
};
#define WSDISPLAYIO_GET_EDID _IOWR('W', 102, struct wsdisplayio_edid_info)