From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 3751933064A for ; Wed, 29 Apr 2026 13:45:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777470307; cv=none; b=INUdaBYTHCqEYyHkmyANnrJl8k9MJgc42TGt0iep3k2n8d51+dQBVyuZkWOFD5hlU3mx51Rm94EMdgCPUE2Lko24Emtxds1MkU6lTH48w3vdSPQLs7Vet2gIOSgAbzWMrmbhmw3jcTAk1r9ykVnHlW1BGoLfAjg5iiellYR3kII= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777470307; c=relaxed/simple; bh=28+tnpURcjI3sWdESS5K4K12F1ma/NQ5bjrkODhCHQk=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=cGs8/JM6TvyerP55QYxG0FAdsrYwsmk5pvi/4RWJHMJ1c5HZj1b2hTNlky7m5G8ZoMrtshJvLP4y3YZnlNfwxdoOnT4F32UvkRXtyot+82I/tYZp4pkVhH2dDlCWwUyhMtrPb9yr9rWwiXQzc1+OPnMP85XJbigJjUXVFlBBTLE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=lam0AiPb; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="lam0AiPb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9787FC19425; Wed, 29 Apr 2026 13:45:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1777470306; bh=28+tnpURcjI3sWdESS5K4K12F1ma/NQ5bjrkODhCHQk=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=lam0AiPbwbzBU/0hSc41RevrvSuQAvPZmo1aNCx1j4GAePdCwUm9IfR7OdrFHFLY/ +SmndazdWl8HJfmjngd9zWSXQEtZV5CxUydIDt9CIgCoQ1T1p/3099syI86PmiJrvd 1xtajhVWlGVyMlbVRu207NiixRKlgWZyDARjC2G1sM+EXAIKhqS7dZEjX3ARQ9SDxC sexyQcNvXUqqMUudEcuYpSTuc24A3rWmmsnpuIvLxa6SshIuq8oy9MREg/KuF5M9eE evzlPUxDrHcEmFER6dZ17qE9nV9axjuoOKWp2vypqNUOKu1MesmgkT8NUR1TaAj+EB hidUEPS/IIa0A== Message-ID: <096acd5f-5284-45a4-b634-08514ae8fff1@kernel.org> Date: Wed, 29 Apr 2026 23:45:02 +1000 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] m68k: coldfire: select legacy gpiolib interface for mcfqspi To: Arnd Bergmann , Geert Uytterhoeven Cc: Arnd Bergmann , linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org References: <20260428155729.3278685-1-arnd@kernel.org> Content-Language: en-US From: Greg Ungerer In-Reply-To: <20260428155729.3278685-1-arnd@kernel.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Arnd, On 29/4/26 01:57, Arnd Bergmann wrote: > From: Arnd Bergmann > > The common coldfire code uses the old GPIO number based interfaces for > at least the QSPI chipselect lines. Select the required Kconfig symbol > to keep it building when that becomes optional. > > Apparently there are no devices attached to a QSPI controller in any of > the coldfire boards, so this is not actually used in upstream kernels. > > Signed-off-by: Arnd Bergmann Thanks, applied to m68knommu for-next branch. Regards Greg > --- > arch/m68k/Kconfig.cpu | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu > index c9a7e602d8a4..148f8a79d206 100644 > --- a/arch/m68k/Kconfig.cpu > +++ b/arch/m68k/Kconfig.cpu > @@ -30,6 +30,7 @@ config COLDFIRE > select CPU_HAS_NO_MULDIV64 > select GENERIC_CSUM > select GPIOLIB > + select GPIOLIB_LEGACY if SPI_COLDFIRE_QSPI > select HAVE_LEGACY_CLK > select HAVE_PAGE_SIZE_8KB if !MMU >