diff options
| author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-01-26 18:26:44 +0400 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-06-02 11:33:53 +0400 |
| commit | 4d43a603c71d0eb92534bc82b72933f329d8a64c (patch) | |
| tree | 4f3e84aa4a23374078d04797438b0389cd9460f1 /include/hw/char/bcm2835_aux.h | |
| parent | c90e9392efa6579e714fe9aa2993e7d89e3792dc (diff) | |
| download | focaccia-qemu-4d43a603c71d0eb92534bc82b72933f329d8a64c.tar.gz focaccia-qemu-4d43a603c71d0eb92534bc82b72933f329d8a64c.zip | |
char: move CharBackend handling in char-fe unit
Move all the frontend struct and methods to a seperate unit. This avoids accidentally mixing backend and frontend calls, and helps with readabilty. Make qemu_chr_replay() a macro shared by both char and char-fe. Export qemu_chr_write(), and use a macro for qemu_chr_write_all() (nb: yes, CharBackend is for char frontend :) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'include/hw/char/bcm2835_aux.h')
| -rw-r--r-- | include/hw/char/bcm2835_aux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/char/bcm2835_aux.h b/include/hw/char/bcm2835_aux.h index 2a051c5646..cdbf7e3e37 100644 --- a/include/hw/char/bcm2835_aux.h +++ b/include/hw/char/bcm2835_aux.h @@ -9,7 +9,7 @@ #define BCM2835_AUX_H #include "hw/sysbus.h" -#include "chardev/char.h" +#include "chardev/char-fe.h" #define TYPE_BCM2835_AUX "bcm2835-aux" #define BCM2835_AUX(obj) OBJECT_CHECK(BCM2835AuxState, (obj), TYPE_BCM2835_AUX) |