Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Dec 2013 17:48:33 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r259265 - head/sys/mips/beri
Message-ID:  <201312121748.rBCHmXdR011090@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Thu Dec 12 17:48:33 2013
New Revision: 259265
URL: http://svnweb.freebsd.org/changeset/base/259265

Log:
  Use correct value pointing to previously selected FDT DTB.
  
  Reviewed by:	brooks
  Sponsored by:	DARPA, AFRL
  MFC after:	1 week

Modified:
  head/sys/mips/beri/beri_machdep.c

Modified: head/sys/mips/beri/beri_machdep.c
==============================================================================
--- head/sys/mips/beri/beri_machdep.c	Thu Dec 12 16:58:45 2013	(r259264)
+++ head/sys/mips/beri/beri_machdep.c	Thu Dec 12 17:48:33 2013	(r259265)
@@ -178,7 +178,7 @@ platform_start(__register_t a0, __regist
 
 	if (OF_install(OFW_FDT, 0) == FALSE)
 		while (1);
-	if (OF_init(&fdt_static_dtb) != 0)
+	if (OF_init((void *)dtbp) != 0)
 		while (1);
 #endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312121748.rBCHmXdR011090>