svn commit: r312615 - head/sys/powerpc/mpc85xx

Justin Hibbits jhibbits at FreeBSD.org
Sun Jan 22 06:17:33 UTC 2017


Author: jhibbits
Date: Sun Jan 22 06:17:31 2017
New Revision: 312615
URL: https://svnweb.freebsd.org/changeset/base/312615

Log:
  Fix r312613.
  
  Somehow this slipped through my build testing.

Modified:
  head/sys/powerpc/mpc85xx/fsl_diu.c

Modified: head/sys/powerpc/mpc85xx/fsl_diu.c
==============================================================================
--- head/sys/powerpc/mpc85xx/fsl_diu.c	Sun Jan 22 06:00:05 2017	(r312614)
+++ head/sys/powerpc/mpc85xx/fsl_diu.c	Sun Jan 22 06:17:31 2017	(r312615)
@@ -389,7 +389,7 @@ diu_attach(device_t dev)
 			OF_prop_free(edid_cells);
 			return (ENXIO);
 		}
-		videomode = edid->edid_preferred_mode;
+		videomode = edid.edid_preferred_mode;
 	} else {
 		/* Parse video-mode kenv variable. */
 		if ((err = sscanf(vm_name, "fslfb:%dx%d@%d", &w, &h, &r)) != 3) {


More information about the svn-src-all mailing list