Author: jhibbits
Date: Sat May 19 03:47:28 2018
New Revision: 333826
URL: https://svnweb.freebsd.org/changeset/base/333826

Log:
  Fix a manual copy from the original diff for r333825
  
  The 'else' was in the original diff.
  
  Submitted by: Breno Leitao

Modified:
  head/sys/powerpc/ofw/ofw_machdep.c

Modified: head/sys/powerpc/ofw/ofw_machdep.c
==============================================================================
--- head/sys/powerpc/ofw/ofw_machdep.c  Sat May 19 03:45:38 2018        
(r333825)
+++ head/sys/powerpc/ofw/ofw_machdep.c  Sat May 19 03:47:28 2018        
(r333826)
@@ -352,7 +352,7 @@ ofw_mem_regions(struct mem_region *memp, int *memsz,
                if (OF_getproplen(phandle, "linux,usable-memory") >= 0)
                        res = parse_ofw_memory(phandle, "linux,usable-memory",
                            &availp[asz]);
-               if (OF_getproplen(phandle, "available") >= 0)
+               else if (OF_getproplen(phandle, "available") >= 0)
                        res = parse_ofw_memory(phandle, "available",
                            &availp[asz]);
                else
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to