From patchwork Mon Apr 27 08:07:36 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 20077 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n3R88eCO007321 for ; Mon, 27 Apr 2009 08:08:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754239AbZD0IIi (ORCPT ); Mon, 27 Apr 2009 04:08:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754277AbZD0IIh (ORCPT ); Mon, 27 Apr 2009 04:08:37 -0400 Received: from mx2.redhat.com ([66.187.237.31]:51840 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754233AbZD0IIg (ORCPT ); Mon, 27 Apr 2009 04:08:36 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n3R88bXv013022 for ; Mon, 27 Apr 2009 04:08:37 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n3R88aga022289; Mon, 27 Apr 2009 04:08:36 -0400 Received: from redhat.com (vpn-10-134.str.redhat.com [10.32.10.134]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n3R88YR5007069; Mon, 27 Apr 2009 04:08:34 -0400 Date: Mon, 27 Apr 2009 11:07:36 +0300 From: "Michael S. Tsirkin" To: avi@redhat.com Cc: kvm@vger.kernel.org Subject: [PATCH] qemu-kvm: make kvm_create_pit static Message-ID: <20090427080736.GA30244@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org libkvm-x86.c:55: warning: no previous prototype for ‘kvm_create_pit’ Signed-off-by: Michael S. Tsirkin --- kvm/libkvm/libkvm-x86.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kvm/libkvm/libkvm-x86.c b/kvm/libkvm/libkvm-x86.c index 2fc4fce..df8cc81 100644 --- a/kvm/libkvm/libkvm-x86.c +++ b/kvm/libkvm/libkvm-x86.c @@ -52,7 +52,7 @@ static int kvm_init_tss(kvm_context_t kvm) return 0; } -int kvm_create_pit(kvm_context_t kvm) +static int kvm_create_pit(kvm_context_t kvm) { #ifdef KVM_CAP_PIT int r;