From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6sI-00032S-96 for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wz6s5-0001jD-1j for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:42 -0400 Received: from mail-lb0-x236.google.com ([2a00:1450:4010:c04::236]:52981) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wz6s4-0001it-PT for qemu-devel@nongnu.org; Mon, 23 Jun 2014 12:13:28 -0400 Received: by mail-lb0-f182.google.com with SMTP id c11so4910142lbj.27 for ; Mon, 23 Jun 2014 09:13:27 -0700 (PDT) From: Max Filippov Date: Mon, 23 Jun 2014 20:12:48 +0400 Message-Id: <1403539976-22581-2-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1403539976-22581-1-git-send-email-jcmvbkbc@gmail.com> References: <1403539976-22581-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH 1/9] hw/xtensa: remove extraneous xtensa_ prefix from file names List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov , Waldemar Brodkorb 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 --- hw/xtensa/Makefile.objs | 4 ++-- hw/xtensa/{xtensa_bootparam.h => bootparam.h} | 0 hw/xtensa/{xtensa_sim.c => sim.c} | 0 hw/xtensa/{xtensa_lx60.c => xtfpga.c} | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename hw/xtensa/{xtensa_bootparam.h => bootparam.h} (100%) rename hw/xtensa/{xtensa_sim.c => sim.c} (100%) rename hw/xtensa/{xtensa_lx60.c => xtfpga.c} (99%) diff --git a/hw/xtensa/Makefile.objs b/hw/xtensa/Makefile.objs index 6ead782..cb77dc3 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 183527f..0b8a2ed 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; -- 1.8.1.4