Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
target/i386/sev: Rename sev_i386.h -> sev.h
SEV is a x86 specific feature, and the "sev_i386.h" header
is already in target/i386/. Rename it as "sev.h" to simplify.

Patch created mechanically using:

  $ git mv target/i386/sev_i386.h target/i386/sev.h
  $ sed -i s/sev_i386.h/sev.h/ $(git grep -l sev_i386.h)

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20211007161716.453984-15-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
philmd authored and bonzini committed Oct 13, 2021
1 parent e24b333 commit 93777de
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion hw/i386/x86.c
Expand Up @@ -47,7 +47,7 @@
#include "hw/i386/fw_cfg.h"
#include "hw/intc/i8259.h"
#include "hw/rtc/mc146818rtc.h"
#include "target/i386/sev_i386.h"
#include "target/i386/sev.h"

#include "hw/acpi/cpu_hotplug.h"
#include "hw/irq.h"
Expand Down
2 changes: 1 addition & 1 deletion target/i386/cpu.c
Expand Up @@ -26,7 +26,7 @@
#include "sysemu/reset.h"
#include "sysemu/hvf.h"
#include "kvm/kvm_i386.h"
#include "sev_i386.h"
#include "sev.h"
#include "qapi/error.h"
#include "qapi/qapi-visit-machine.h"
#include "qapi/qmp/qerror.h"
Expand Down
2 changes: 1 addition & 1 deletion target/i386/kvm/kvm.c
Expand Up @@ -28,7 +28,7 @@
#include "sysemu/kvm_int.h"
#include "sysemu/runstate.h"
#include "kvm_i386.h"
#include "sev_i386.h"
#include "sev.h"
#include "hyperv.h"
#include "hyperv-proto.h"

Expand Down
2 changes: 1 addition & 1 deletion target/i386/monitor.c
Expand Up @@ -32,7 +32,7 @@
#include "sysemu/kvm.h"
#include "sysemu/sev.h"
#include "qapi/error.h"
#include "sev_i386.h"
#include "sev.h"
#include "qapi/qapi-commands-misc-target.h"
#include "qapi/qapi-commands-misc.h"
#include "hw/i386/pc.h"
Expand Down
2 changes: 1 addition & 1 deletion target/i386/sev-stub.c
Expand Up @@ -13,7 +13,7 @@

#include "qemu/osdep.h"
#include "qapi/error.h"
#include "sev_i386.h"
#include "sev.h"

bool sev_enabled(void)
{
Expand Down
2 changes: 1 addition & 1 deletion target/i386/sev-sysemu-stub.c
Expand Up @@ -14,7 +14,7 @@
#include "qemu/osdep.h"
#include "qapi/qapi-commands-misc-target.h"
#include "qapi/error.h"
#include "sev_i386.h"
#include "sev.h"

SevInfo *sev_get_info(void)
{
Expand Down
2 changes: 1 addition & 1 deletion target/i386/sev.c
Expand Up @@ -25,7 +25,7 @@
#include "qemu/uuid.h"
#include "crypto/hash.h"
#include "sysemu/kvm.h"
#include "sev_i386.h"
#include "sev.h"
#include "sysemu/sysemu.h"
#include "sysemu/runstate.h"
#include "trace.h"
Expand Down
File renamed without changes.

0 comments on commit 93777de

Please sign in to comment.