From patchwork Thu Jan 21 10:13:26 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 43422 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F290BB7D02 for ; Thu, 21 Jan 2010 21:20:24 +1100 (EST) Received: from localhost ([127.0.0.1]:40100 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXu5H-0002Aj-UB for incoming@patchwork.ozlabs.org; Thu, 21 Jan 2010 05:16:15 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NXu3i-0001ye-HM for qemu-devel@nongnu.org; Thu, 21 Jan 2010 05:14:38 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NXu3d-0001tu-Gp for qemu-devel@nongnu.org; Thu, 21 Jan 2010 05:14:37 -0500 Received: from [199.232.76.173] (port=49479 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NXu3c-0001tf-SV for qemu-devel@nongnu.org; Thu, 21 Jan 2010 05:14:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:40902) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NXu3c-0003KJ-A6 for qemu-devel@nongnu.org; Thu, 21 Jan 2010 05:14:32 -0500 Received: from int-mx04.intmail.prod.int.phx2.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.17]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o0LAEUtL001709 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 21 Jan 2010 05:14:31 -0500 Received: from localhost (dhcp1-127.pnq.redhat.com [10.65.193.127]) by int-mx04.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o0LAESU3004388; Thu, 21 Jan 2010 05:14:30 -0500 From: Amit Shah To: qemu-devel@nongnu.org Date: Thu, 21 Jan 2010 15:43:26 +0530 Message-Id: <1264068806-19113-1-git-send-email-amit.shah@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.17 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Amit Shah Subject: [Qemu-devel] [PATCH] virtio-console: Rename virtio-serial.c back to virtio-console.c X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This file was renamed to ease the reviews of the recent changes that went in. Now that the changes are done, rename the file back to its original name. Signed-off-by: Amit Shah --- Makefile.objs | 2 +- hw/{virtio-serial.c => virtio-console.c} | 0 2 files changed, 1 insertions(+), 1 deletions(-) rename hw/{virtio-serial.c => virtio-console.c} (100%) diff --git a/hw/virtio-serial.c b/hw/virtio-console.c similarity index 100% rename from hw/virtio-serial.c rename to hw/virtio-console.c diff --git a/Makefile.objs b/Makefile.objs index 77ff7f6..e791dd5 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -127,7 +127,7 @@ user-obj-y += cutils.o cache-utils.o hw-obj-y = hw-obj-y += loader.o -hw-obj-y += virtio.o virtio-serial.o +hw-obj-y += virtio.o virtio-console.o hw-obj-y += fw_cfg.o hw-obj-y += watchdog.o hw-obj-$(CONFIG_ECC) += ecc.o