From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sx8DG-0004n0-DE for qemu-devel@nongnu.org; Thu, 02 Aug 2012 23:06:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sx8DB-00068H-KI for qemu-devel@nongnu.org; Thu, 02 Aug 2012 23:06:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:15523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sx8DA-00067D-VK for qemu-devel@nongnu.org; Thu, 02 Aug 2012 23:06:01 -0400 From: Eduardo Habkost Date: Thu, 2 Aug 2012 23:59:11 -0300 Message-Id: <1343962766-22024-5-git-send-email-ehabkost@redhat.com> In-Reply-To: <1343962766-22024-1-git-send-email-ehabkost@redhat.com> References: <1343962766-22024-1-git-send-email-ehabkost@redhat.com> Subject: [Qemu-devel] [RFC 04/19] rename cpu_x86_find_by_name to x86_cpu_build_from_name List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= The function does a lot more than just "finding" the CPU model, so name it accordingly. Signed-off-by: Eduardo Habkost --- target-i386/cpu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 1154a34..be04e4b 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1077,7 +1077,8 @@ static void x86_cpuid_set_tsc_freq(Object *obj, Visitor *v, void *opaque, cpu->env.tsc_khz = value / 1000; } -static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model) +static int cpu_x86_build_from_name(x86_def_t *x86_cpu_def, + const char *cpu_model) { unsigned int i; x86_def_t *def; @@ -1356,7 +1357,7 @@ int cpu_x86_register(X86CPU *cpu, const char *cpu_model) memset(def, 0, sizeof(*def)); - if (cpu_x86_find_by_name(def, cpu_model) < 0) { + if (cpu_x86_build_from_name(def, cpu_model) < 0) { return -1; } if (def->vendor1) { -- 1.7.11.2