Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/wscons make the EDID buffer pointer void *



details:   https://anonhg.NetBSD.org/src/rev/803f49bd02f7
branches:  trunk
changeset: 766638:803f49bd02f7
user:      macallan <macallan%NetBSD.org@localhost>
date:      Wed Jun 29 05:00:06 2011 +0000

description:
make the EDID buffer pointer void *

diffstat:

 sys/dev/wscons/wsconsio.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 5a2592ba11ef -r 803f49bd02f7 sys/dev/wscons/wsconsio.h
--- a/sys/dev/wscons/wsconsio.h Wed Jun 29 04:59:10 2011 +0000
+++ b/sys/dev/wscons/wsconsio.h Wed Jun 29 05:00:06 2011 +0000
@@ -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)
 



Home | Main Index | Thread Index | Old Index