* [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include
@ 2018-05-08 14:42 Philippe Mathieu-Daudé
2018-05-08 22:11 ` Michael Clark
2018-05-08 22:39 ` Alistair Francis
0 siblings, 2 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-05-08 14:42 UTC (permalink / raw)
To: Michael Clark, Palmer Dabbelt, Sagar Karandikar,
Bastian Koppelmann
Cc: Philippe Mathieu-Daudé, qemu-devel, Alistair Francis
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
hw/riscv/riscv_htif.c | 1 -
hw/riscv/sifive_e.c | 1 -
hw/riscv/sifive_u.c | 1 -
hw/riscv/spike.c | 1 -
hw/riscv/virt.c | 1 -
5 files changed, 5 deletions(-)
diff --git a/hw/riscv/riscv_htif.c b/hw/riscv/riscv_htif.c
index 3e17f30251..43533f9dc2 100644
--- a/hw/riscv/riscv_htif.c
+++ b/hw/riscv/riscv_htif.c
@@ -29,7 +29,6 @@
#include "chardev/char-fe.h"
#include "hw/riscv/riscv_htif.h"
#include "qemu/timer.h"
-#include "exec/address-spaces.h"
#include "qemu/error-report.h"
#define RISCV_DEBUG_HTIF 0
diff --git a/hw/riscv/sifive_e.c b/hw/riscv/sifive_e.c
index e4ecb7aa4b..d3d11e849b 100644
--- a/hw/riscv/sifive_e.c
+++ b/hw/riscv/sifive_e.c
@@ -46,7 +46,6 @@
#include "hw/riscv/sifive_e.h"
#include "chardev/char.h"
#include "sysemu/arch_init.h"
-#include "exec/address-spaces.h"
#include "elf.h"
static const struct MemmapEntry {
diff --git a/hw/riscv/sifive_u.c b/hw/riscv/sifive_u.c
index c05dcbba95..07f8644695 100644
--- a/hw/riscv/sifive_u.c
+++ b/hw/riscv/sifive_u.c
@@ -44,7 +44,6 @@
#include "chardev/char.h"
#include "sysemu/arch_init.h"
#include "sysemu/device_tree.h"
-#include "exec/address-spaces.h"
#include "elf.h"
#include <libfdt.h>
diff --git a/hw/riscv/spike.c b/hw/riscv/spike.c
index f94e2b6707..aecdf296cc 100644
--- a/hw/riscv/spike.c
+++ b/hw/riscv/spike.c
@@ -39,7 +39,6 @@
#include "chardev/char.h"
#include "sysemu/arch_init.h"
#include "sysemu/device_tree.h"
-#include "exec/address-spaces.h"
#include "elf.h"
#include <libfdt.h>
diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c
index ad03113e0f..d967624bcc 100644
--- a/hw/riscv/virt.c
+++ b/hw/riscv/virt.c
@@ -37,7 +37,6 @@
#include "chardev/char.h"
#include "sysemu/arch_init.h"
#include "sysemu/device_tree.h"
-#include "exec/address-spaces.h"
#include "elf.h"
#include <libfdt.h>
--
2.17.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include
2018-05-08 14:42 [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include Philippe Mathieu-Daudé
@ 2018-05-08 22:11 ` Michael Clark
2018-05-08 22:39 ` Alistair Francis
1 sibling, 0 replies; 3+ messages in thread
From: Michael Clark @ 2018-05-08 22:11 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: Palmer Dabbelt, Sagar Karandikar, Bastian Koppelmann,
QEMU Developers, Alistair Francis
On Wed, May 9, 2018 at 2:42 AM, Philippe Mathieu-Daudé <f4bug@amsat.org>
wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
>
Reviewed-by: Michael Clark <mjc@sifive.com>
---
> hw/riscv/riscv_htif.c | 1 -
> hw/riscv/sifive_e.c | 1 -
> hw/riscv/sifive_u.c | 1 -
> hw/riscv/spike.c | 1 -
> hw/riscv/virt.c | 1 -
> 5 files changed, 5 deletions(-)
>
> diff --git a/hw/riscv/riscv_htif.c b/hw/riscv/riscv_htif.c
> index 3e17f30251..43533f9dc2 100644
> --- a/hw/riscv/riscv_htif.c
> +++ b/hw/riscv/riscv_htif.c
> @@ -29,7 +29,6 @@
> #include "chardev/char-fe.h"
> #include "hw/riscv/riscv_htif.h"
> #include "qemu/timer.h"
> -#include "exec/address-spaces.h"
> #include "qemu/error-report.h"
>
> #define RISCV_DEBUG_HTIF 0
> diff --git a/hw/riscv/sifive_e.c b/hw/riscv/sifive_e.c
> index e4ecb7aa4b..d3d11e849b 100644
> --- a/hw/riscv/sifive_e.c
> +++ b/hw/riscv/sifive_e.c
> @@ -46,7 +46,6 @@
> #include "hw/riscv/sifive_e.h"
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> static const struct MemmapEntry {
> diff --git a/hw/riscv/sifive_u.c b/hw/riscv/sifive_u.c
> index c05dcbba95..07f8644695 100644
> --- a/hw/riscv/sifive_u.c
> +++ b/hw/riscv/sifive_u.c
> @@ -44,7 +44,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> diff --git a/hw/riscv/spike.c b/hw/riscv/spike.c
> index f94e2b6707..aecdf296cc 100644
> --- a/hw/riscv/spike.c
> +++ b/hw/riscv/spike.c
> @@ -39,7 +39,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c
> index ad03113e0f..d967624bcc 100644
> --- a/hw/riscv/virt.c
> +++ b/hw/riscv/virt.c
> @@ -37,7 +37,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> --
> 2.17.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include
2018-05-08 14:42 [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include Philippe Mathieu-Daudé
2018-05-08 22:11 ` Michael Clark
@ 2018-05-08 22:39 ` Alistair Francis
1 sibling, 0 replies; 3+ messages in thread
From: Alistair Francis @ 2018-05-08 22:39 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: Michael Clark, Palmer Dabbelt, Sagar Karandikar,
Bastian Koppelmann, Alistair Francis,
qemu-devel@nongnu.org Developers
On Tue, May 8, 2018 at 7:42 AM, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
> ---
> hw/riscv/riscv_htif.c | 1 -
> hw/riscv/sifive_e.c | 1 -
> hw/riscv/sifive_u.c | 1 -
> hw/riscv/spike.c | 1 -
> hw/riscv/virt.c | 1 -
> 5 files changed, 5 deletions(-)
>
> diff --git a/hw/riscv/riscv_htif.c b/hw/riscv/riscv_htif.c
> index 3e17f30251..43533f9dc2 100644
> --- a/hw/riscv/riscv_htif.c
> +++ b/hw/riscv/riscv_htif.c
> @@ -29,7 +29,6 @@
> #include "chardev/char-fe.h"
> #include "hw/riscv/riscv_htif.h"
> #include "qemu/timer.h"
> -#include "exec/address-spaces.h"
> #include "qemu/error-report.h"
>
> #define RISCV_DEBUG_HTIF 0
> diff --git a/hw/riscv/sifive_e.c b/hw/riscv/sifive_e.c
> index e4ecb7aa4b..d3d11e849b 100644
> --- a/hw/riscv/sifive_e.c
> +++ b/hw/riscv/sifive_e.c
> @@ -46,7 +46,6 @@
> #include "hw/riscv/sifive_e.h"
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> static const struct MemmapEntry {
> diff --git a/hw/riscv/sifive_u.c b/hw/riscv/sifive_u.c
> index c05dcbba95..07f8644695 100644
> --- a/hw/riscv/sifive_u.c
> +++ b/hw/riscv/sifive_u.c
> @@ -44,7 +44,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> diff --git a/hw/riscv/spike.c b/hw/riscv/spike.c
> index f94e2b6707..aecdf296cc 100644
> --- a/hw/riscv/spike.c
> +++ b/hw/riscv/spike.c
> @@ -39,7 +39,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> diff --git a/hw/riscv/virt.c b/hw/riscv/virt.c
> index ad03113e0f..d967624bcc 100644
> --- a/hw/riscv/virt.c
> +++ b/hw/riscv/virt.c
> @@ -37,7 +37,6 @@
> #include "chardev/char.h"
> #include "sysemu/arch_init.h"
> #include "sysemu/device_tree.h"
> -#include "exec/address-spaces.h"
> #include "elf.h"
>
> #include <libfdt.h>
> --
> 2.17.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-05-08 22:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-08 14:42 [Qemu-devel] [PATCH] RISC-V: Remove unnecessary header include Philippe Mathieu-Daudé
2018-05-08 22:11 ` Michael Clark
2018-05-08 22:39 ` Alistair Francis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).