svn commit: r284533 - head/sys/dev/videomode

Oleksandr Tymoshenko gonzo at FreeBSD.org
Thu Jun 18 00:22:15 UTC 2015


Author: gonzo
Date: Thu Jun 18 00:22:14 2015
New Revision: 284533
URL: https://svnweb.freebsd.org/changeset/base/284533

Log:
  Add hskew field to struct videomode. It is required by some controllers
  that are not 100% VESA-compatible (e.g. TDA19988 HDMI framer)

Modified:
  head/sys/dev/videomode/videomode.h

Modified: head/sys/dev/videomode/videomode.h
==============================================================================
--- head/sys/dev/videomode/videomode.h	Wed Jun 17 23:26:00 2015	(r284532)
+++ head/sys/dev/videomode/videomode.h	Thu Jun 18 00:22:14 2015	(r284533)
@@ -43,6 +43,7 @@ struct videomode {
 	int vtotal;
 	int flags;		/* Video mode flags; see below. */
 	const char *name;
+	int hskew;
 };
 
 /*


More information about the svn-src-all mailing list