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 9B6C43AEF3A for ; Fri, 17 Apr 2026 08:49:46 +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=1776415789; cv=none; b=DoDCgRiZtx+RJfmV2CUWYnSIj4jxwoQ4XP4Vflow5YBi5D+KX7iPdEf39m9r1N/wTMuEvUVrc5LPaI52pRTB5cV7zIMSM1m0T3OoU8N8BU596Lv+v5Me5GCC9k43uw3rIqXDJdRzytnOXoSZoVbf9LFMd/bYl7lVVG7T9VbtGZA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776415789; c=relaxed/simple; bh=sdYzpMdW6TeyWluJ9v0gzzSQwH1Y2RGPjPMFY/co9ss=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=lXrUULGKdSIS1Bdj+qNAAd49HuGmytHlX5lBHAKiFhVqvEPGoOzNqw2yTG03YkWW0WWZpU76gymf/1d1KCDZc8jxBpncN+R7jBaCyzawMHwDB+xjkj7eppFxjkPfBAvQPBDxt3voqL7veSQbZfNbsdvOqgozy8FtpjmHlIq36MA= 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=WHNGe9B1; 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="WHNGe9B1" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 69544C5C3D8; Fri, 17 Apr 2026 08:50:23 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 017E960497; Fri, 17 Apr 2026 08:49:45 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id BEBB21046097F; Fri, 17 Apr 2026 10:49:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1776415784; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=sdYzpMdW6TeyWluJ9v0gzzSQwH1Y2RGPjPMFY/co9ss=; b=WHNGe9B1L7cjCtLZe03WYL7bSPH3qnjXUk2+3wELbu83Cj8+vnqXv2CimAIeK7TGom+41N IzgSTbWStnRla0cHVIuSfn4IY7mUvh8Mb9f5nG6ZsfZzy2O23KER0PqlKIsL9pn17/+S0J mAhlzJkeDgN/hOErM3QeDy1dDbfL30RGMrukmuE8gXn+1vbwnTNR4MyEojA6sdUVgtxNv3 0FdKEboJs3Y+JzelM2d3a9v3EMb/+KGcxvASeuUKogosDZKqOVTHFyMWSQywCcVvs+YElO XZCDRUX1vsTpT7U7E37q0l+kh9NuzH/dB68RArtAbLfnlSwapF4uL/XNX0aXag== From: Miquel Raynal To: tkuw584924@gmail.com Cc: Tudor Ambarus , Pratyush Yadav , Michael Walle , Richard Weinberger , Vignesh Raghavendra , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, Takahiro Kuwano Subject: Re: [PATCH v2] mtd: spi-nor: remove unused NO_OP_CHIP_ERASE flag In-Reply-To: <20260417-die-erase-fix-v2-1-73bb7004ebad@infineon.com> (tkuw's message of "Fri, 17 Apr 2026 16:17:15 +0900") References: <20260417-die-erase-fix-v2-1-73bb7004ebad@infineon.com> User-Agent: mu4e 1.12.7; emacs 30.2 Date: Fri, 17 Apr 2026 10:49:39 +0200 Message-ID: <87cxzyc6os.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 17/04/2026 at 16:17:15 +09, tkuw584924@gmail.com wrote: > From: Takahiro Kuwano > > NO_OP_CHIP_ERASE flag is no longer used. > Remove definition and references of the flag in core and debugfs. > > Reviewed-by: Tudor Ambarus > Signed-off-by: Takahiro Kuwano > --- Reviewed-by: Miquel Raynal Thanks for the comment about the bits renumbering Michael, I prefer this version indeed. Thanks, Miqu=C3=A8l