From: Max Filippov Date: Sat, 21 Jun 2014 06:39:58 +0000 (+0400) Subject: hw/xtensa: remove extraneous xtensa_ prefix from file names X-Git-Tag: v2.1.0-rc0~16^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b707ab7;p=thirdparty%2Fqemu.git hw/xtensa: remove extraneous xtensa_ prefix from file names While at it rename lx60 (named after the first board of the family) to more generic xtfpga (the family name). Signed-off-by: Max Filippov --- diff --git a/hw/xtensa/Makefile.objs b/hw/xtensa/Makefile.objs index 6ead7820c45..cb77dc3793a 100644 --- a/hw/xtensa/Makefile.objs +++ b/hw/xtensa/Makefile.objs @@ -1,3 +1,3 @@ obj-y += pic_cpu.o -obj-y += xtensa_sim.o -obj-y += xtensa_lx60.o +obj-y += sim.o +obj-y += xtfpga.o diff --git a/hw/xtensa/xtensa_bootparam.h b/hw/xtensa/bootparam.h similarity index 100% rename from hw/xtensa/xtensa_bootparam.h rename to hw/xtensa/bootparam.h diff --git a/hw/xtensa/xtensa_sim.c b/hw/xtensa/sim.c similarity index 100% rename from hw/xtensa/xtensa_sim.c rename to hw/xtensa/sim.c diff --git a/hw/xtensa/xtensa_lx60.c b/hw/xtensa/xtfpga.c similarity index 99% rename from hw/xtensa/xtensa_lx60.c rename to hw/xtensa/xtfpga.c index 183527f6a7c..0b8a2eda06e 100644 --- a/hw/xtensa/xtensa_lx60.c +++ b/hw/xtensa/xtfpga.c @@ -37,7 +37,7 @@ #include "hw/block/flash.h" #include "sysemu/blockdev.h" #include "sysemu/char.h" -#include "xtensa_bootparam.h" +#include "bootparam.h" typedef struct LxBoardDesc { hwaddr flash_base;