diff options
Diffstat (limited to 'python/m5/objects/Uart.py')
-rw-r--r-- | python/m5/objects/Uart.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/m5/objects/Uart.py b/python/m5/objects/Uart.py index 57b8b44af..6eda5cdb3 100644 --- a/python/m5/objects/Uart.py +++ b/python/m5/objects/Uart.py @@ -10,6 +10,7 @@ class Uart(PioDevice): class Uart8250(Uart): type = 'Uart8250' -class Uart8530(Uart): - type = 'Uart8530' +if build_env['ALPHA_TLASER']: + class Uart8530(Uart): + type = 'Uart8530' |