From patchwork Mon Oct 5 16:06:27 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 526408 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 20F4B1402B6 for ; Tue, 6 Oct 2015 03:09:39 +1100 (AEDT) Received: from localhost ([::1]:46472 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj8KW-0000a1-WC for incoming@patchwork.ozlabs.org; Mon, 05 Oct 2015 12:09:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36247) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj8I1-0005p2-Pe for qemu-devel@nongnu.org; Mon, 05 Oct 2015 12:07:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zj8I0-0005uE-Ry for qemu-devel@nongnu.org; Mon, 05 Oct 2015 12:07:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45706) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zj8I0-0005u8-NQ for qemu-devel@nongnu.org; Mon, 05 Oct 2015 12:07:00 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 2FC508F314; Mon, 5 Oct 2015 16:07:00 +0000 (UTC) Received: from localhost (ovpn-113-182.phx2.redhat.com [10.3.113.182]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t95G6wsC022819; Mon, 5 Oct 2015 12:06:59 -0400 From: Eduardo Habkost To: Peter Maydell Date: Mon, 5 Oct 2015 13:06:27 -0300 Message-Id: <1444061194-32753-6-git-send-email-ehabkost@redhat.com> In-Reply-To: <1444061194-32753-1-git-send-email-ehabkost@redhat.com> References: <1444061194-32753-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: qemu-devel@nongnu.org, Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Richard Henderson Subject: [Qemu-devel] [PULL 05/12] target-i386: Make check_hw_breakpoints static X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Richard Henderson The function is now only used from within a single file. Reviewed-by: Eduardo Habkost Signed-off-by: Richard Henderson Signed-off-by: Eduardo Habkost --- target-i386/bpt_helper.c | 2 +- target-i386/cpu.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/target-i386/bpt_helper.c b/target-i386/bpt_helper.c index 6f6537d..c071c24 100644 --- a/target-i386/bpt_helper.c +++ b/target-i386/bpt_helper.c @@ -79,7 +79,7 @@ void hw_breakpoint_remove(CPUX86State *env, int index) } } -bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update) +static bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update) { target_ulong dr6; int reg; diff --git a/target-i386/cpu.h b/target-i386/cpu.h index dc7654d..92426dc 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1154,7 +1154,6 @@ static inline int hw_breakpoint_len(unsigned long dr7, int index) void hw_breakpoint_insert(CPUX86State *env, int index); void hw_breakpoint_remove(CPUX86State *env, int index); -bool check_hw_breakpoints(CPUX86State *env, bool force_dr6_update); void breakpoint_handler(CPUState *cs); /* will be suppressed */