Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964844AbWETX1u (ORCPT ); Sat, 20 May 2006 19:27:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S964856AbWETX1u (ORCPT ); Sat, 20 May 2006 19:27:50 -0400 Received: from static-ip-62-75-166-246.inaddr.intergenia.de ([62.75.166.246]:9688 "EHLO bu3sch.de") by vger.kernel.org with ESMTP id S964844AbWETX1t (ORCPT ); Sat, 20 May 2006 19:27:49 -0400 From: Michael Buesch To: Ameer Armaly Subject: Re: [patch] initialize variables to reduce i386 warnings Date: Sun, 21 May 2006 01:27:27 +0200 User-Agent: KMail/1.9.1 References: In-Reply-To: Cc: linux-kernel@vger.kernel.org MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200605210127.27881.mb@bu3sch.de> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 762 Lines: 22 On Sunday 21 May 2006 01:19, you wrote: > Initialized cpu_freq in arch/i386/kernel/cpu/transmeta.c to suppress warning. > index 9202b67..3a7e485 100644 > --- a/arch/i386/kernel/efi.c > +++ b/arch/i386/kernel/efi.c > @@ -270,8 +270,8 @@ void efi_memmap_walk(efi_freemem_callbac > { > int prev_valid = 0; > struct range { > - unsigned long start; > - unsigned long end; > + unsigned long start = 0; > + unsigned long end = 0; > } prev, curr; Did you actually try to compile the stuff before submission? - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/