From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) (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 33D5C13959D for ; Thu, 11 Jun 2026 07:18:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.171.202.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781162328; cv=none; b=LycPIceudJ7ypNtySSKfCB+5fc156eApo39ProThKbVaDJr8NS++yntkP2u51gouTaDj+b7cAf/mLu/M5V6NkUYmb81Rplcp3m0e4Hnog14O/BMCdyhleheVZZVtUZRGxc9MoecYUJYg/mb9i3f/zJ1NOEK/812WyxXGxpQrtnM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781162328; c=relaxed/simple; bh=sLNr0hm3uew16y7gDj0WRdwwiCg0beTzmwfRz3pQzxA=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=IciGkfAnearwiBT5a8cxCGt0YMJ4IsvRWWOHSqCPj7EBLoIBoX2N+d2AUuUxj1MRodx76OaR9+Ys9KexTz+xz9n3ndZ+lWoShXVK4DQ7LXTk+cuH/5w78s/VNH7pCI/S0/ikK2GgVPR9kZdrzrOYJWXDRPGLFdCVOm+eGMUph2E= 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=RjTsL9aZ; arc=none smtp.client-ip=185.171.202.116 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="RjTsL9aZ" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 5922EC49F63; Thu, 11 Jun 2026 07:18:45 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 15FCA5FF03; Thu, 11 Jun 2026 07:18:43 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 42CC3106B9E33; Thu, 11 Jun 2026 09:18:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1781162322; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=sLNr0hm3uew16y7gDj0WRdwwiCg0beTzmwfRz3pQzxA=; b=RjTsL9aZGZLbis5NocmSyRViuFMI53uoVHIsnfWq5DZCK8tm+woEEqV+qh39Ly8r411yht RAoZUBhYgQm/gMXU3Pef4yg6xVslVYDssHUtRbvEnY0Ww4P248CpzqlA+dnfJ70rzM96eE W2bfpwr4L81BcysNcxjXF3R5WSe7M/gOhh2u/EIoxDmDxSW6QXilkagiNDl+2//V6XFot1 bM/n1vE4kEyyv9t2kVoPWo3T4uxbICziTjjIBIp2YVFOMY2zyVwDuy2RriT97UxQR6Ikc7 Nnpbg5UpX3etO6EOIDZ4WHQgBEku34/Je28eoqOg9WGh54nO1JYmTQZFeu/tYw== From: Miquel Raynal To: Qing Wu Cc: Michal Simek , Vignesh Raghavendra , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4] mtd: spinand: dosilicon: Add support for additional models In-Reply-To: <20260527130754.10867-1-ses1er@gmail.com> (Qing Wu's message of "Wed, 27 May 2026 09:07:54 -0400") References: <20260527130754.10867-1-ses1er@gmail.com> User-Agent: mu4e 1.12.7; emacs 30.2 Date: Thu, 11 Jun 2026 09:18:40 +0200 Message-ID: <87ldcl8rzj.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 27/05/2026 at 09:07:54 -04, Qing Wu wrote: > Add support for additional Dosilicon SPI NAND chips. > > Datasheets for chips included in this patch: https://www.dosilicon.com/SP= I%20NAND%20Flash.html > > Tested on a TP-Link TL-7DR7250 with a Dosilicon DS35Q1GB (0xE5 0xF1) > > Signed-off-by: Qing Wu > --- Please run checkpatch.pl, there are obvious issues you didn't address. Thanks, Miqu=C3=A8l