diff options
author | Wei Huang <wei@redhat.com> | 2015-08-11 22:08:20 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-08-13 14:08:30 +0300 |
commit | 60d8f328b878ead45a5e5e347935097e3426bbd9 (patch) | |
tree | 359f5103fd4d30a9ecf49849c4d46da5a5b708de /hw/i386/pc_q35.c | |
parent | 89cc4a2760be800b5924dd705b1369bc29783c9f (diff) | |
download | qemu-60d8f328b878ead45a5e5e347935097e3426bbd9.tar.gz qemu-60d8f328b878ead45a5e5e347935097e3426bbd9.tar.bz2 qemu-60d8f328b878ead45a5e5e347935097e3426bbd9.zip |
smbios: move smbios code into a common folder
To share smbios among different architectures, this patch moves SMBIOS
code (smbios.c and smbios.h) from x86 specific folders into new
hw/smbios directories. As a result, CONFIG_SMBIOS=y is defined in
x86 default config files.
Acked-by: Gabriel Somlo <somlo@cmu.edu>
Tested-by: Gabriel Somlo <somlo@cmu.edu>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Tested-by: Leif Lindholm <leif.lindholm@linaro.org>
Signed-off-by: Wei Huang <wei@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/i386/pc_q35.c')
-rw-r--r-- | hw/i386/pc_q35.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c index cd4ecc32f7..c07d65bc46 100644 --- a/hw/i386/pc_q35.c +++ b/hw/i386/pc_q35.c @@ -39,7 +39,7 @@ #include "hw/pci-host/q35.h" #include "exec/address-spaces.h" #include "hw/i386/ich9.h" -#include "hw/i386/smbios.h" +#include "hw/smbios/smbios.h" #include "hw/ide/pci.h" #include "hw/ide/ahci.h" #include "hw/usb.h" |