diff options
author | Markus Armbruster | 2016-06-22 19:11:19 +0200 |
---|---|---|
committer | Markus Armbruster | 2016-07-12 16:19:16 +0200 |
commit | a9c94277f07d19d3eb14f199c3e93491aa3eae0e (patch) | |
tree | fbacb9207afd71c3ad206a4099099d95b7824c16 /hw/ppc/spapr_cpu_core.c | |
parent | Fix confusing argument names in some common functions (diff) | |
download | qemu-a9c94277f07d19d3eb14f199c3e93491aa3eae0e.tar.gz qemu-a9c94277f07d19d3eb14f199c3e93491aa3eae0e.tar.xz qemu-a9c94277f07d19d3eb14f199c3e93491aa3eae0e.zip |
Use #include "..." for our own headers, <...> for others
Tracked down with an ugly, brittle and probably buggy Perl script.
Also move includes converted to <...> up so they get included before
ours where that's obviously okay.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Tested-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'hw/ppc/spapr_cpu_core.c')
-rw-r--r-- | hw/ppc/spapr_cpu_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ppc/spapr_cpu_core.c b/hw/ppc/spapr_cpu_core.c index 70b6b0b5ee..9347f0741e 100644 --- a/hw/ppc/spapr_cpu_core.c +++ b/hw/ppc/spapr_cpu_core.c @@ -12,11 +12,11 @@ #include "hw/ppc/spapr.h" #include "hw/boards.h" #include "qapi/error.h" -#include <sysemu/cpus.h> +#include "sysemu/cpus.h" #include "target-ppc/kvm_ppc.h" #include "hw/ppc/ppc.h" #include "target-ppc/mmu-hash64.h" -#include <sysemu/numa.h> +#include "sysemu/numa.h" static void spapr_cpu_reset(void *opaque) { |