config: use Field defaults over Config defaults
Also rename some keys that had the same class name as their value's class name.
This commit is contained in:
@ -5,7 +5,7 @@ package freechips.rocketchip.config
|
||||
abstract class Field[T] private (val default: Option[T])
|
||||
{
|
||||
def this() = this(None)
|
||||
def this(x: T) = this(Some(x))
|
||||
def this(default: T) = this(Some(default))
|
||||
}
|
||||
|
||||
abstract class View {
|
||||
|
Reference in New Issue
Block a user