diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-04-19 16:55:24 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-05-20 14:28:54 -0300 |
commit | cf3dc71eb5141761c3aed0d936e390aeaa73a88b (patch) | |
tree | c7ef92499a4654ddaeb433e3dc58390e8df62aab /hw/lm32/milkymist-hw.h | |
parent | 6f0c894c25e42454e9065fc4e5cc22c251cea30d (diff) |
milkymist: Move DT_NOGRAPHIC check outside milkymist_tmu2_create()
DT_NOGRAPHIC handling will be moved to a MachineState field, and
it will be easier to change milkymist_init() to check that field.
Cc: Michael Walle <michael@walle.cc>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/lm32/milkymist-hw.h')
-rw-r--r-- | hw/lm32/milkymist-hw.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/lm32/milkymist-hw.h b/hw/lm32/milkymist-hw.h index c8dfb4d2d4..f857d2846f 100644 --- a/hw/lm32/milkymist-hw.h +++ b/hw/lm32/milkymist-hw.h @@ -108,10 +108,6 @@ static inline DeviceState *milkymist_tmu2_create(hwaddr base, int nelements; int ver_major, ver_minor; - if (display_type == DT_NOGRAPHIC) { - return NULL; - } - /* check that GLX will work */ d = XOpenDisplay(NULL); if (d == NULL) { |