summary refs log tree commit diff stats
path: root/hw/lm32.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/lm32.h')
-rw-r--r--hw/lm32.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/hw/lm32.h b/hw/lm32.h
deleted file mode 100644
index 236686ef2b..0000000000
--- a/hw/lm32.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef HW_LM32_H
-#define HW_LM32_H 1
-
-
-#include "qemu-common.h"
-
-static inline DeviceState *lm32_pic_init(qemu_irq cpu_irq)
-{
-    DeviceState *dev;
-    SysBusDevice *d;
-
-    dev = qdev_create(NULL, "lm32-pic");
-    qdev_init_nofail(dev);
-    d = SYS_BUS_DEVICE(dev);
-    sysbus_connect_irq(d, 0, cpu_irq);
-
-    return dev;
-}
-
-static inline DeviceState *lm32_juart_init(void)
-{
-    DeviceState *dev;
-
-    dev = qdev_create(NULL, "lm32-juart");
-    qdev_init_nofail(dev);
-
-    return dev;
-}
-
-#endif