From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:59032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPUmw-0000xH-OP for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPUmv-00045e-Ie for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:26 -0400 Received: from e28smtp08.in.ibm.com ([122.248.162.8]:49516) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPUmu-00045M-MR for qemu-devel@nongnu.org; Tue, 09 Apr 2013 05:24:25 -0400 Received: from /spool/local by e28smtp08.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 9 Apr 2013 14:48:55 +0530 Received: from d28relay03.in.ibm.com (d28relay03.in.ibm.com [9.184.220.60]) by d28dlp03.in.ibm.com (Postfix) with ESMTP id 8742D1258051 for ; Tue, 9 Apr 2013 14:55:42 +0530 (IST) Received: from d28av02.in.ibm.com (d28av02.in.ibm.com [9.184.220.64]) by d28relay03.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r399OCmW10486104 for ; Tue, 9 Apr 2013 14:54:12 +0530 Received: from d28av02.in.ibm.com (loopback [127.0.0.1]) by d28av02.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r399OF7f007221 for ; Tue, 9 Apr 2013 19:24:16 +1000 From: Lei Li Date: Tue, 9 Apr 2013 17:23:43 +0800 Message-Id: <1365499423-19135-1-git-send-email-lilei@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH] Fix the fail of compilation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: pbonzini@redhat.com, Lei Li Commit 47b5264eb3e1cd2825e48d28fd0d1b239ed53974 broke the compile. It's caused by the rename of the file: hw/9pfs/virtio-9p-device.h => include/hw/virtio/virtio-9p.h Signed-off-by: Lei Li --- hw/9pfs/virtio-9p-device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 43f930e..18e3397 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -16,7 +16,7 @@ #include "qemu/sockets.h" #include "virtio-9p.h" #include "fsdev/qemu-fsdev.h" -#include "virtio-9p-device.h" +#include "hw/virtio/virtio-9p.h" #include "virtio-9p-xattr.h" #include "virtio-9p-coth.h" -- 1.7.7.6