From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: [PATCH 28 of 45] gcc-4.6 compile fix: xen/arch/x86/cpu/amd.c Date: Thu, 19 May 2011 21:05:47 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Olaf Hering # Date 1305824414 -7200 # Node ID c8e4a190705be60bae9cff30c90a8a4a307979ec # Parent 90160f32dbae6535e54e72375b004c0113ed1f62 gcc-4.6 compile fix: xen/arch/x86/cpu/amd.c amd.c: In function 'init_amd': amd.c:332:6: error: variable 'r' set but not used [-Werror=unused-but-set-variable] Signed-off-by: Olaf Hering diff -r 90160f32dbae -r c8e4a190705b xen/arch/x86/cpu/amd.c --- a/xen/arch/x86/cpu/amd.c Thu May 19 19:00:12 2011 +0200 +++ b/xen/arch/x86/cpu/amd.c Thu May 19 19:00:14 2011 +0200 @@ -329,7 +329,6 @@ static void check_syscfg_dram_mod_en(voi static void __devinit init_amd(struct cpuinfo_x86 *c) { u32 l, h; - int r; #ifdef CONFIG_SMP unsigned long long value; @@ -375,8 +374,6 @@ static void __devinit init_amd(struct cp } #endif - r = get_model_name(c); - switch(c->x86) { case 6: /* An Athlon/Duron */