From 0ee10242fd5c40ef0268147b23ba225b843e2d20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Wed, 24 Jul 2013 22:49:02 +0200 Subject: lm32_juart: Relocate and tidy header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Färber --- include/hw/char/lm32_juart.h | 11 +++++++++++ include/hw/lm32/lm32_juart.h | 11 ----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 include/hw/char/lm32_juart.h delete mode 100644 include/hw/lm32/lm32_juart.h (limited to 'include/hw') diff --git a/include/hw/char/lm32_juart.h b/include/hw/char/lm32_juart.h new file mode 100644 index 0000000..1cd3148 --- /dev/null +++ b/include/hw/char/lm32_juart.h @@ -0,0 +1,11 @@ +#ifndef QEMU_HW_CHAR_LM32_JUART_H +#define QEMU_HW_CHAR_LM32_JUART_H + +#include "hw/qdev.h" + +uint32_t lm32_juart_get_jtx(DeviceState *d); +uint32_t lm32_juart_get_jrx(DeviceState *d); +void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx); +void lm32_juart_set_jrx(DeviceState *d, uint32_t jrx); + +#endif /* QEMU_HW_LM32_JUART_H */ diff --git a/include/hw/lm32/lm32_juart.h b/include/hw/lm32/lm32_juart.h deleted file mode 100644 index 67fc586..0000000 --- a/include/hw/lm32/lm32_juart.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef QEMU_HW_LM32_JUART_H -#define QEMU_HW_LM32_JUART_H - -#include "qemu-common.h" - -uint32_t lm32_juart_get_jtx(DeviceState *d); -uint32_t lm32_juart_get_jrx(DeviceState *d); -void lm32_juart_set_jtx(DeviceState *d, uint32_t jtx); -void lm32_juart_set_jrx(DeviceState *d, uint32_t jrx); - -#endif /* QEMU_HW_LM32_JUART_H */ -- cgit v1.1