diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-01-26 17:19:46 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-06-02 11:33:52 +0400 |
commit | 8228e353d8906bf43399ca0ef28446c5c48bb686 (patch) | |
tree | 3dd8d23d8e5f0a690062e7f34b8fa5b169c79d55 /backends | |
parent | f664b88247487c4cb020d016bef0f3b1daf9f4e5 (diff) |
chardev: move headers to include/chardev
So they are all in one place. The following patch will move serial &
parallel declarations to the respective headers.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'backends')
-rw-r--r-- | backends/baum.c | 2 | ||||
-rw-r--r-- | backends/msmouse.c | 2 | ||||
-rw-r--r-- | backends/rng-egd.c | 2 | ||||
-rw-r--r-- | backends/testdev.c | 2 | ||||
-rw-r--r-- | backends/wctablet.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/backends/baum.c b/backends/baum.c index 2eddcae119..302dd9666c 100644 --- a/backends/baum.c +++ b/backends/baum.c @@ -24,7 +24,7 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "qemu-common.h" -#include "sysemu/char.h" +#include "chardev/char.h" #include "qemu/timer.h" #include "hw/usb.h" #include "ui/console.h" diff --git a/backends/msmouse.c b/backends/msmouse.c index d2c3162f1e..0ffd137ce8 100644 --- a/backends/msmouse.c +++ b/backends/msmouse.c @@ -23,7 +23,7 @@ */ #include "qemu/osdep.h" #include "qemu-common.h" -#include "sysemu/char.h" +#include "chardev/char.h" #include "ui/console.h" #include "ui/input.h" diff --git a/backends/rng-egd.c b/backends/rng-egd.c index 380b19a0a1..5448f6e5f5 100644 --- a/backends/rng-egd.c +++ b/backends/rng-egd.c @@ -12,7 +12,7 @@ #include "qemu/osdep.h" #include "sysemu/rng.h" -#include "sysemu/char.h" +#include "chardev/char.h" #include "qapi/error.h" #include "qapi/qmp/qerror.h" diff --git a/backends/testdev.c b/backends/testdev.c index 7df9248a13..031e9a23e8 100644 --- a/backends/testdev.c +++ b/backends/testdev.c @@ -25,7 +25,7 @@ */ #include "qemu/osdep.h" #include "qemu-common.h" -#include "sysemu/char.h" +#include "chardev/char.h" #define BUF_SIZE 32 diff --git a/backends/wctablet.c b/backends/wctablet.c index a4d3ae098a..07a4cde956 100644 --- a/backends/wctablet.c +++ b/backends/wctablet.c @@ -32,7 +32,7 @@ #include "qemu/osdep.h" #include "qemu-common.h" -#include "sysemu/char.h" +#include "chardev/char.h" #include "ui/console.h" #include "ui/input.h" #include "trace.h" |