From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from tor.source.kernel.org (tor.source.kernel.org [172.105.4.254]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 502283F54D8 for ; Wed, 6 May 2026 14:57:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=172.105.4.254 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778079473; cv=none; b=KTwYh1IYmLnyMCor1VvfQLEq20kYSkBPGjVK148nX2Mz6AIbpStAiAshiKmRiKOVIW/ivPb3Jr7MZVA5pm2pjgpjyllljsWQdtHcPhOcmPV/pw7ajZxv4ggI54p22ljuBdrcVVNZeghzL/YjJRzHf+sRwh+TsHFqiz4qaN+fHpY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778079473; c=relaxed/simple; bh=8si24IOti1/iGS8Ii+rD9oCJOsgxix/eRYlFpzIWYuI=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=Hrevdli4yiWuLWWJuA9xYVsF/UiHRB131X/voAu0el55c0Tr6dyvtRhOLYDdzgjhhGb7pNx0i+e5wzVikA29oyAi9BHuPbglnyjxlWBD/L5EThqqwAUhe6cfuS2WdEp+1SBOzGDx0TizVPoiQ3eGdBEorr1KC9LK/kmM/DO34wE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=kernel.org; spf=pass smtp.mailfrom=kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=lQnqq4MR; arc=none smtp.client-ip=172.105.4.254 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=kernel.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="lQnqq4MR" Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 07F8260103; Wed, 6 May 2026 14:57:49 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9EBFBC2BCB0; Wed, 6 May 2026 14:57:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778079468; bh=8si24IOti1/iGS8Ii+rD9oCJOsgxix/eRYlFpzIWYuI=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=lQnqq4MRZCzlWelxIgit2yM3HH4EOKJSumvuI3HQjVtEG+0doLGq2jGnpgVSB7+o3 YfqiifCEKZWvIZahx7FybsNrPwPyVqBKSp1bMxcBSbuweHLYfxYHemhRs1QQdLwWMe hAs6YjV4pJpabCN9W/8x4pJ0fvzOfpJmK15/8c7hpjvsQFIbbE2KJvU898al6C+v5B mtU9tL0BkU4OjJdS/wrEqYPBXieZ4/jB3tTMW7jgwMoN7TXkv3VS/v+ZFbl16IBihR yhll48547hyJrCYB0GMa7d0s18ykDZMNNrIF27lHOh4GXK6JSiq/WnyHcOUS6bsqTF Hhz3kEKxPaEqw== Date: Wed, 6 May 2026 15:57:37 +0100 From: Jonathan Cameron To: "Arnd Bergmann" Cc: "Angelo Dureghello" , "Greg Ungerer" , "Geert Uytterhoeven" , "Steven King" , "Maxime Coquelin" , "Alexandre Torgue" , "David Lechner" , Nuno =?UTF-8?B?U8Oh?= , "Andy Shevchenko" , "Greg Ungerer" , linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-iio@vger.kernel.org, "Angelo Dureghello" Subject: Re: [PATCH 08/10] m68k: stmark2: add mcf5441x DAC platform devices Message-ID: <20260506155737.6cd625a5@jic23-huawei> In-Reply-To: References: <20260504-wip-stmark2-dac-v1-0-874c36a4910d@baylibre.com> <20260504-wip-stmark2-dac-v1-8-874c36a4910d@baylibre.com> X-Mailer: Claws Mail 4.4.0 (GTK 3.24.52; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-m68k@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Mon, 04 May 2026 19:28:28 +0200 "Arnd Bergmann" wrote: > On Mon, May 4, 2026, at 19:16, Angelo Dureghello wrote: > > @@ -94,8 +94,42 @@ static struct platform_device dspi_spi0_device = { > ... > > +static struct resource dspi_dac1_resource[] = { > > + [0] = { > > This looks like the name has a copy-paste error: this is not > related to the 'dspi' controller at all but is just the dac, right? > > Arnd > https://sashiko.dev/#/patchset/20260504-wip-stmark2-dac-v1-0-874c36a4910d%40baylibre.com Has noted some more alongside this one. Seems unlikely a DAC has a bus number. Jonathan