From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5C7A6C433F5 for ; Wed, 10 Nov 2021 06:20:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2D4BA610C8 for ; Wed, 10 Nov 2021 06:20:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229731AbhKJGXb (ORCPT ); Wed, 10 Nov 2021 01:23:31 -0500 Received: from smtp-out2.suse.de ([195.135.220.29]:53626 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229572AbhKJGXa (ORCPT ); Wed, 10 Nov 2021 01:23:30 -0500 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id AF16F1FD69; Wed, 10 Nov 2021 06:20:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1636525242; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=DI+mKpogjeY75DSgCTJhCkm5qj3kYMZXRMDcLCeV3pM=; b=NAHEm9zJA98EtVopNH94M+dWMzPkuay5GBNQDZi0KuqAT0pe9N6+gQFzLPMWfmNG/o7wlZ m8cjsLtgnqdCG3BPE2ldNqFQBGk4gXMZU7wpCFWZiix1qlZ9aWirhrLRbn4TnStYL0/9FQ o4o8WRm4lcurPFLIYTen9Fxjl5AWqBM= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1636525242; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=DI+mKpogjeY75DSgCTJhCkm5qj3kYMZXRMDcLCeV3pM=; b=8VHRnZWdJcFeSO7QfxYXRe2Ux2lgDk4xx5anNF+xXx0A5Tybs4eyiOJJzLK+Eki+4sztgp jYl8R0mvqAXyRHBA== Received: from alsa1.suse.de (alsa1.suse.de [10.160.4.42]) by relay2.suse.de (Postfix) with ESMTP id A6DC9A3B8A; Wed, 10 Nov 2021 06:20:42 +0000 (UTC) Date: Wed, 10 Nov 2021 07:20:42 +0100 Message-ID: From: Takashi Iwai To: Stephen Rothwell Cc: Takashi Iwai , Linux Kernel Mailing List , Linux Next Mailing List Subject: Re: linux-next: build failure after merge of the sound-current tree In-Reply-To: <20211110100003.07043ecc@canb.auug.org.au> References: <20211110100003.07043ecc@canb.auug.org.au> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/25.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org On Wed, 10 Nov 2021 00:00:03 +0100, Stephen Rothwell wrote: > > Hi all, > > After merging the sound-current tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > sound/core/memalloc.c:720:32: error: 'snd_dma_sg_wc_ops' undeclared here (not in a function); did you mean 'snd_dma_sg_ops'? > 720 | [SNDRV_DMA_TYPE_DEV_WC_SG] = &snd_dma_sg_wc_ops, > | ^~~~~~~~~~~~~~~~~ > | snd_dma_sg_ops > sound/core/memalloc.c:651:12: error: 'snd_dma_sg_wc_mmap' defined but not used [-Werror=unused-function] > 651 | static int snd_dma_sg_wc_mmap(struct snd_dma_buffer *dmab, > | ^~~~~~~~~~~~~~~~~~ > sound/core/memalloc.c:641:13: error: 'snd_dma_sg_wc_free' defined but not used [-Werror=unused-function] > 641 | static void snd_dma_sg_wc_free(struct snd_dma_buffer *dmab) > | ^~~~~~~~~~~~~~~~~~ > sound/core/memalloc.c:628:14: error: 'snd_dma_sg_wc_alloc' defined but not used [-Werror=unused-function] > 628 | static void *snd_dma_sg_wc_alloc(struct snd_dma_buffer *dmab, size_t size) > | ^~~~~~~~~~~~~~~~~~~ > > Caused by commit > > d51f779940fb ("ALSA: memalloc: Unify x86 SG-buffer handling (take#2)") > > I have used the sound-current tree from next-20211109 for today. Sorry for the mess, I dropped the problematic patch. Somehow a wrong version was submitted and merged. Takashi