svn commit: r294418 - head/sys/boot/fdt/dts/arm

Zbigniew Bodek zbb at FreeBSD.org
Wed Jan 20 13:32:15 UTC 2016


Author: zbb
Date: Wed Jan 20 13:32:13 2016
New Revision: 294418
URL: https://svnweb.freebsd.org/changeset/base/294418

Log:
  Correct ranges in Armada38x dts
  
  Ranges property of 'soc' node used two-cell addresses which resulted in
  casting errors as simplebus resource allocation works with 32-bit u_long
  variables. FDT ranges were simplified.
  
  Reviewed by:    imp
  Obtained from:	Semihalf
  Sponsored by:	Stormshield
  Submitted by:	Michal Stanek <mst at semihalf.com>
  Differential revision:  https://reviews.freebsd.org/D4212

Modified:
  head/sys/boot/fdt/dts/arm/armada-388-gp.dts

Modified: head/sys/boot/fdt/dts/arm/armada-388-gp.dts
==============================================================================
--- head/sys/boot/fdt/dts/arm/armada-388-gp.dts	Wed Jan 20 13:23:02 2016	(r294417)
+++ head/sys/boot/fdt/dts/arm/armada-388-gp.dts	Wed Jan 20 13:32:13 2016	(r294418)
@@ -59,8 +59,7 @@
 	};
 
 	soc {
-		ranges = <MBUS_ID(0xf0, 0x01) 0 0xf1000000 0x100000
-			  MBUS_ID(0x01, 0x1d) 0 0xfff00000 0x100000>;
+		ranges = <0 0 0xf1000000 0x100000>;
 
 		internal-regs {
 			spi at 10600 {


More information about the svn-src-head mailing list