1
0
Fork 0

soc: compatible with "simple-bus" => scanned for platform devices

This commit is contained in:
Wesley W. Terpstra 2017-03-29 23:50:58 -07:00 committed by Andrew Waterman
parent 9f85b2e996
commit a2fc51d65e
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ trait CoreplexNetwork extends HasCoreplexParameters {
Description("soc", Map(
"#address-cells" -> width,
"#size-cells" -> width,
"compatible" -> (p(DTSModel) +: p(DTSCompat)).map(s => ResourceString(s + "-soc")),
"compatible" -> ((p(DTSModel) +: p(DTSCompat)).map(s => ResourceString(s + "-soc")) :+ ResourceString("simple-bus")),
"ranges" -> Nil))
}
}