From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40781) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4ni1-000240-OC for qemu-devel@nongnu.org; Thu, 01 Aug 2013 03:54:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V4nhv-0007rt-6X for qemu-devel@nongnu.org; Thu, 01 Aug 2013 03:54:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:40368) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V4nhu-0007r2-VE for qemu-devel@nongnu.org; Thu, 01 Aug 2013 03:53:59 -0400 Date: Thu, 1 Aug 2013 10:55:30 +0300 From: "Michael S. Tsirkin" Message-ID: <20130801075529.GA3177@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] memory.c: drop kvm.h dependency List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Anthony Liguori , Richard Henderson , Avi Kivity , Jan Kiszka memory.c does not use any kvm specific interfaces, don't include kvm.h Signed-off-by: Michael S. Tsirkin --- memory.c | 1 - 1 file changed, 1 deletion(-) diff --git a/memory.c b/memory.c index 01846c9..6b5c420 100644 --- a/memory.c +++ b/memory.c @@ -18,7 +18,6 @@ #include "exec/ioport.h" #include "qemu/bitops.h" #include "qom/object.h" -#include "sysemu/kvm.h" #include #include "exec/memory-internal.h" -- MST