From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) (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 D29C11D5178 for ; Wed, 15 Jan 2025 18:14:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.198 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736964887; cv=none; b=AbB9N8+PbcRr50LMB7M6crhpu19g5AHtlzijPXHpLy1Xzu5dbbw53DwXbMZasfGF4WgiwZq5O1HyIgTHM4ZLidz0QzTZRm7nmxW/dp3emkCIWcYJxUfdvEDpoxdX/Qewtx+A0cC+CwHVxHoqraVfv4LrUlPa4ByElVOLdz3jetI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1736964887; c=relaxed/simple; bh=OHeQwDSJMY5knJr437KGhOasUWyUGvFTI0geAXNMpiA=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=vAmLSxFgUUfVLSUl3go8kWrVLli96eJCrLObA/YXH2FI7qPCyok31t4eHM1fyV8C1yXif88NiTs4nx0mGO0Imp8nZy2KIjPCYv2m1howwF18yNUu/vZEt79M3CsDCfWYYSU9oDKJwijAxEhmDTcgpuJgwRuks8sd/BJg26hPR1E= 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=fvbBU/Fn; arc=none smtp.client-ip=217.70.183.198 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="fvbBU/Fn" Received: by mail.gandi.net (Postfix) with ESMTPSA id D38B9C0003; Wed, 15 Jan 2025 18:14:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1736964884; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=OHeQwDSJMY5knJr437KGhOasUWyUGvFTI0geAXNMpiA=; b=fvbBU/FnuwMFsyKfX9c23Zv3EVBtExkYnFsbLkBA8tcRMJKlGiS45Kq0plqWTPfaXFQXJd YummSLwEden8y8CxHdcKdqmM1lXnARJh6QRSyJfXcuKSYhs7SziTxjFXiyB9jQBnsXT57Q QIVaOAg8ZxrKqmyKZgr4DEOZgz8DTVU6eLAsQk3Am1QXMQeuD1ryBgAA2G699ecYXE5mZi v7ir6AHQlkTrx0fotFmSk06iSw4jzDyj203fesFxY/zIoWi0QIznfbcIiSY7S+AkQKg+Gw iD+2ZGv8wEre7W2NrS+8dQTpfp5hLgW8+3udiPX7sBj001Lf3BG272bnhgezzw== From: Miquel Raynal To: "Rob Herring (Arm)" Cc: Vignesh Raghavendra , Tudor Ambarus , Richard Weinberger , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mtd: hyperbus: Use of_property_present() for non-boolean properties In-Reply-To: <20250109182149.3971698-1-robh@kernel.org> (Rob Herring's message of "Thu, 9 Jan 2025 12:21:48 -0600") References: <20250109182149.3971698-1-robh@kernel.org> User-Agent: mu4e 1.12.7; emacs 29.4 Date: Wed, 15 Jan 2025 19:14:43 +0100 Message-ID: <87frlkndv0.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-GND-Sasl: miquel.raynal@bootlin.com Hi Rob, On 09/01/2025 at 12:21:48 -06, "Rob Herring (Arm)" wrote: > The use of of_property_read_bool() for non-boolean properties is > deprecated in favor of of_property_present() when testing for property > presence. This patch did not apply because of another unrelated change in my tree touching the return paths in this driver, I fixed it while applying. Thanks, Miqu=C3=A8l