]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
libqos: Relocate I2C files
authorAndreas Färber <afaerber@suse.de>
Thu, 2 May 2013 13:56:26 +0000 (15:56 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Fri, 3 May 2013 17:03:14 +0000 (12:03 -0500)
Commit c4efe1cada311b9dc0df5beb71c4227ff3414aa1 (qtest: add libqos
including PCI support) created a libqos/ subdirectory but left the
existing I2C libqos files libi2c*.[hc] in tests/. Clean this up.

Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Message-id: 1367502986-15104-1-git-send-email-afaerber@suse.de
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
tests/Makefile
tests/libqos/i2c-omap.c [moved from tests/libi2c-omap.c with 99% similarity]
tests/libqos/i2c.c [moved from tests/libi2c.c with 95% similarity]
tests/libqos/i2c.h [moved from tests/libi2c.h with 100% similarity]
tests/tmp105-test.c

index 72bf2cd2201d754030da6418faeb34efc5c794db..bf41d1005069c0cd92654384c90e38c5f8b48a8a 100644 (file)
@@ -119,14 +119,16 @@ tests/test-visitor-serialization$(EXESUF): tests/test-visitor-serialization.o $(
 tests/test-mul64$(EXESUF): tests/test-mul64.o libqemuutil.a
 
 libqos-obj-y = tests/libqos/pci.o tests/libqos/fw_cfg.o
+libqos-obj-y += tests/libqos/i2c.o
 libqos-pc-obj-y = $(libqos-obj-y) tests/libqos/pci-pc.o tests/libqos/fw_cfg-pc.o
 libqos-pc-obj-y += tests/libqos/malloc-pc.o
+libqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o
 
 tests/rtc-test$(EXESUF): tests/rtc-test.o
 tests/m48t59-test$(EXESUF): tests/m48t59-test.o
 tests/fdc-test$(EXESUF): tests/fdc-test.o
 tests/hd-geo-test$(EXESUF): tests/hd-geo-test.o
-tests/tmp105-test$(EXESUF): tests/tmp105-test.o
+tests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y)
 tests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y)
 tests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y)
 
@@ -137,7 +139,6 @@ QTEST_TARGETS=$(foreach TARGET,$(TARGETS), $(if $(check-qtest-$(TARGET)-y), $(TA
 check-qtest-$(CONFIG_POSIX)=$(foreach TARGET,$(TARGETS), $(check-qtest-$(TARGET)-y))
 
 qtest-obj-y = tests/libqtest.o libqemuutil.a libqemustub.a
-qtest-obj-y += tests/libi2c.o tests/libi2c-omap.o
 $(check-qtest-y): $(qtest-obj-y)
 
 .PHONY: check-help
similarity index 99%
rename from tests/libi2c-omap.c
rename to tests/libqos/i2c-omap.c
index c52458cbd67b8e80bb408204f202a4f8b8545073..3d4d45d848a9dc0b7cc1ae2895f0fedbe98af058 100644 (file)
@@ -6,7 +6,7 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  */
-#include "libi2c.h"
+#include "libqos/i2c.h"
 
 #include <glib.h>
 #include <string.h>
similarity index 95%
rename from tests/libi2c.c
rename to tests/libqos/i2c.c
index 13ec85c0cbefa7af90c4a946d8446ab14de7a21b..da7592f713e46f4e3007c204a222b50433d43012 100644 (file)
@@ -6,7 +6,7 @@
  * This work is licensed under the terms of the GNU GPL, version 2 or later.
  * See the COPYING file in the top-level directory.
  */
-#include "libi2c.h"
+#include "libqos/i2c.h"
 #include "libqtest.h"
 
 void i2c_send(I2CAdapter *i2c, uint8_t addr,
similarity index 100%
rename from tests/libi2c.h
rename to tests/libqos/i2c.h
index 2869129df3c30ffa13a8ca07d7c9180f8f3dec9d..fecd6dcd7091df551974db2b37de7df5eb7edd87 100644 (file)
@@ -7,7 +7,7 @@
  * See the COPYING file in the top-level directory.
  */
 #include "libqtest.h"
-#include "libi2c.h"
+#include "libqos/i2c.h"
 #include "hw/misc/tmp105_regs.h"
 
 #include <glib.h>