From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-02.galae.net (smtpout-02.galae.net [185.246.84.56]) (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 CE421376A1F for ; Mon, 6 Jul 2026 14:19:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.84.56 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783347547; cv=none; b=Eh7Z6ysv7mj1iR+FxfcFsnydrejzlTV1FSR2Q8E/wvWd9IrOC3AYmQQFmNrk1tUVEnc/q2+oxCOWaHm+VSoWNZ0NLspKsGU4L4i1mzcCPSS9L82tHQi4bXjyBZDxDJ1zxvqO2mR3PM5YNV1kDWJvpM80XIRV8/8Zj94HSfoWsmY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783347547; c=relaxed/simple; bh=vPaIdWhiKB+in0s3zD3ywJLDi+FkxnIdiGmCxYXW6Qg=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=ORYnaJBuLvFv6mkVot6BGBznsN7uTUMtInKhXvyN3UnaUB7nC2ajlvFujmHACAziEHtlEuVD+bbsC4jvc8xj2uI/2Gkho1wzXFuAVaPk1/cVAsavwllpGDlP4eOjygime4CBORrxf8h47PNr9LGABV+ndPzNB+O37f9rxJQlrRc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=u00VJuxn; arc=none smtp.client-ip=185.246.84.56 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="u00VJuxn" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-02.galae.net (Postfix) with ESMTPS id 490B51A0E96; Mon, 6 Jul 2026 14:19:04 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 1DA68601A2; Mon, 6 Jul 2026 14:19:04 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 3A60E11BB988A; Mon, 6 Jul 2026 16:19:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1783347543; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=vPaIdWhiKB+in0s3zD3ywJLDi+FkxnIdiGmCxYXW6Qg=; b=u00VJuxn4duj93NS4DLASw/a7JzOYh7yFJRViirKWVCgap6LnTbTYcrMiLAuqz+PaIvL0n RLEuVNtd7eRFJSk5u5BQvueA3G+kBPTPfXANvn+PrIjvxAyrbkAj7S1bOcRF8aK/Qe4yuO +7mEtXqEV8QL46j3/CfycoEKizGkBwQ9XFDWzn6eBQ26FdaDlJRh+YARSCLx/D6gg58+9Q 2eLPtvk4EizQB8jcHT6TM/F+nJx5wTNq6e4djPLjJR8dsKziU4NZzthEJxmRMKC+ahDKKi HG5JaJ7Z70KXwKH1idzAiHbXkg53VLwea/hwygOQ8rv/5cA8d4VaGMa9exH0+Q== From: Miquel Raynal To: Michael Walle Cc: Pratyush Yadav , Takahiro Kuwano , Richard Weinberger , Vignesh Raghavendra , Tudor Ambarus , linux-mtd@lists.infradead.org, Cheng Ming Lin , linux-kernel@vger.kernel.org Subject: Re: [PATCH v1 5/8] mtd: spi-nor: move spi_nor_post_bfpt_fixups() into sfdp In-Reply-To: <20260703143003.1809579-6-mwalle@kernel.org> (Michael Walle's message of "Fri, 3 Jul 2026 16:29:16 +0200") References: <20260703143003.1809579-1-mwalle@kernel.org> <20260703143003.1809579-6-mwalle@kernel.org> User-Agent: mu4e 1.12.7; emacs 30.2 Date: Mon, 06 Jul 2026 16:18:59 +0200 Message-ID: <87a4s4kxpo.fsf@bootlin.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Last-TLS-Session-Version: TLSv1.3 On 03/07/2026 at 16:29:16 +02, Michael Walle wrote: > Move spi_nor_post_bfpt_fixups() into the sfdp module because it's > really only needed there. While at it, add some documentation. > > Signed-off-by: Michael Walle I feel like it was fine to keep this in the core, but that's okay to move since this way we avoid the export. Reviewed-by: Miquel Raynal Thanks, Miqu=C3=A8l