Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758477AbXKTORM (ORCPT ); Tue, 20 Nov 2007 09:17:12 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752587AbXKTOQ6 (ORCPT ); Tue, 20 Nov 2007 09:16:58 -0500 Received: from cantor2.suse.de ([195.135.220.15]:49849 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752806AbXKTOQ5 (ORCPT ); Tue, 20 Nov 2007 09:16:57 -0500 Date: Tue, 20 Nov 2007 14:48:16 +0100 Message-ID: From: Takashi Iwai To: Kamalesh Babulal Cc: akpm@linux-foundation.org, mm-commits@vger.kernel.org, linux-kernel@vger.kernel.org, perex@perex.cz, alsa-devel@alsa-project.org, apw@shadowen.org, balbir@linux.vnet.ibm.com Subject: Re: [PATCH] mm snapshot broken-out-2007-11-20-01-45 build failer tumbler/snapper In-Reply-To: <20071120140249.GA4438@linux.vnet.ibm.com> References: <200711200953.lAK9qxjO030444@imap1.linux-foundation.org> <20071120140249.GA4438@linux.vnet.ibm.com> User-Agent: Wanderlust/2.15.5 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 MULE XEmacs/21.5 (beta28) (fuki) (+CVS-20070806) (i386-suse-linux) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=ISO-8859-7 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1961 Lines: 60 At Tue, 20 Nov 2007 19:32:49 +0530, Kamalesh Babulal wrote: > > Hi Andrew, > > The kernel build fails, with following error > > CC sound/ppc/tumbler.o > sound/ppc/tumbler.c: In function ?snapper_get_capture_source?: > sound/ppc/tumbler.c:812: error: ?union ? has no member named ?value? > sound/ppc/tumbler.c: In function ?snapper_put_capture_source?: > sound/ppc/tumbler.c:824: error: ?union ? has no member named ?enuemerated? > make[2]: *** [sound/ppc/tumbler.o] Error 1 > make[1]: *** [sound/ppc] Error 2 > make: *** [sound] Error 2 > > Signed-off-by: Kamalesh Babulal Oops, thanks, that's my fault. Applied to ALSA tree now. It didn't trigger my build check properly. I have to fix it... Takashi > -- > --- linux-2.6.24-rc3/sound/ppc/tumbler.c 2007-11-20 16:13:42.000000000 +0530 > +++ linux-2.6.24-rc3/sound/ppc/~tumbler.c 2007-11-20 19:14:27.000000000 +0530 > @@ -809,7 +809,7 @@ static int snapper_get_capture_source(st > struct pmac_tumbler *mix = chip->mixer_data; > > snd_assert(mix, return -ENODEV); > - ucontrol->value.enumerated.value[0] = mix->capture_source; > + ucontrol->value.enumerated.item[0] = mix->capture_source; > return 0; > } > > @@ -821,7 +821,7 @@ static int snapper_put_capture_source(st > int change; > > snd_assert(mix, return -ENODEV); > - change = ucontrol->value.enuemerated.item[0] != mix->capture_source; > + change = ucontrol->value.enumerated.item[0] != mix->capture_source; > if (change) { > mix->capture_source = !!ucontrol->value.enumerated.item[0]; > snapper_set_capture_source(mix); > > > -- > Thanks & Regards, > Kamalesh Babulal, > Linux Technology Center, > IBM, ISTL. > - 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/