svn commit: r259898 - stable/10/sys/mips/beri
Bjoern A. Zeeb
bz at FreeBSD.org
Wed Dec 25 23:54:39 UTC 2013
Author: bz
Date: Wed Dec 25 23:54:38 2013
New Revision: 259898
URL: http://svnweb.freebsd.org/changeset/base/259898
Log:
MFC r259265:
Use correct value pointing to previously selected FDT DTB.
Sponsored by: DARPA, AFRL
Modified:
stable/10/sys/mips/beri/beri_machdep.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/mips/beri/beri_machdep.c
==============================================================================
--- stable/10/sys/mips/beri/beri_machdep.c Wed Dec 25 22:49:54 2013 (r259897)
+++ stable/10/sys/mips/beri/beri_machdep.c Wed Dec 25 23:54:38 2013 (r259898)
@@ -173,7 +173,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
More information about the svn-src-stable
mailing list