From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-03.galae.net (smtpout-03.galae.net [185.246.85.4]) (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 4AA38290DBB; Tue, 5 May 2026 07:50:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.85.4 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777967430; cv=none; b=ixLlxeMt8JGsIwHr4XnZ89vfm6OKIEk7NVRcNSLLCo15ebUBnGED4fXoIZJCp7ixAXsFPf308uaVsiKDuWhfy0Qoasi41gMJQJBNrpCc8rskWPuDU//o5+88d2A1BvvPe3xw7Amm1neQIOYAa1eZi5+IXLSyDWzTgBKPJvGJdj4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777967430; c=relaxed/simple; bh=OdW81qkiJ/RlFzHtj6wlLdBZQJ90u3tXqrwDP0yVULU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=Fn2io3e87ctnHWa+jA/dZhxeHHaljryugpSKlRxwJjCjOY8TKmUEF4K5yAMMIZyTznWGi9L8TgTsJ1mhr/5A3MwVmTmorWDRkZlRL4V/N8UmJ/nfaLU/M4JD99wBcXgKO7Uae9Brl9RvsonRNuaNiMGME+/nKz9pOpl0pawPFa8= 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=UsA7P2B8; arc=none smtp.client-ip=185.246.85.4 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="UsA7P2B8" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-03.galae.net (Postfix) with ESMTPS id 64DBC4E42BCF; Tue, 5 May 2026 07:50:25 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 288D35FD9D; Tue, 5 May 2026 07:50:25 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 20E3E11AD1006; Tue, 5 May 2026 09:50:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1777967424; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=LOLxxzEAMizK1N6MnTWd69181RhDona4ue7L+aw+YA8=; b=UsA7P2B8feoFxoCTKXhBTkhk9Xpie8FO9SW12TNXFxG38cUGVWBA/DPHiZhn4Lf9jNbIqA xGGEO636XKZGZy4PxuNOfQp+OhY/E/XcTQGx7IQsc3PTglvhxE1J0NdwePZS3jX1+BkrlP +PXW+SmIZ8OWLnw/vfU0CsLR9Hm4pwKm2tfqn++ON3N7rmHPgIrygIlYI9fiTiPumh0Sav wgMtlIwM1RGIk+8Id36bYpgqaITdlU//5tRPUx/oqIarewq8ZbUDuuicRlApSVYtF05FQM NK0DM8bi0CbesfTpdCgCVb6Ed4ae5Nd3Yh6JfcJNOpuZKmt/r8+VMIzNYuE5og== From: Miquel Raynal To: Arseniy Krasnov Cc: Richard Weinberger , Vignesh Raghavendra , Frieder Schrempf , Boris Brezillon , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, rulkc@linuxtesting.org, oxffffaa@gmail.com, stable@vger.kernel.org Subject: Re: [PATCH v1] mtd: rawnand: fix condition in 'nand_select_target()' In-Reply-To: <20260504221012.1310605-1-avkrasnov@rulkc.org> (Arseniy Krasnov's message of "Tue, 5 May 2026 01:10:12 +0300") References: <20260504221012.1310605-1-avkrasnov@rulkc.org> User-Agent: mu4e 1.12.7; emacs 30.2 Date: Tue, 05 May 2026 09:50:19 +0200 Message-ID: <87mryeqoqs.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 Hi, On 05/05/2026 at 01:10:12 +03, Arseniy Krasnov wrote: Two important typos in the commit log :-) > 'cs' here must in range [0:nanddev_ntargets). be [ Thanks, Miqu=C3=A8l