From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 13972233933 for ; Fri, 26 Jun 2026 03:46:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782445613; cv=none; b=DvclbJEgXLCTY/+SElKBKIcvUP8h5fSB0qryDu01ETy+yApSKKLVYtXoj31yXdhsODuGHTYWdWSMgtHlrVXhH6AdEKiqMOoDF1KPcwsbLPRxUqKZXgm9Ymbqh6sPHfZPXFz3UtWiQomgxXXEUeYqUkwG8/u2TsgW07fd3EEIzaI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782445613; c=relaxed/simple; bh=899/oUaXcc9U2Ebx0A6s41AGSAIZjPgBa1X5/qDLAiU=; h=From:Subject:To:Cc:In-Reply-To:References:Content-Type:Date: Message-Id; b=o4hWn+yZY0fbj9+yIYG1DY/9boDR4EDApMYI2o7pjJlu9S6lmnx7PddvkZYzaplByp1kPW9hJjVOrUE9+Qzrxeyn0AnMVlBBsMPd2tBWjCJMpV94KHXa4YupgeZ/o6/0uDqKEcvJ9bjyvDaopwADb9UlU/0sL1HVULF9sqYfFiQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=P/8rMWI9; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="P/8rMWI9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7F4531F000E9; Fri, 26 Jun 2026 03:46:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782445611; bh=0a/TUHmP2Iy+GxN7hBSooai/jO+W2C0okv2wjd6ix2M=; h=From:Subject:Reply-To:To:Cc:In-Reply-To:References:Date; b=P/8rMWI9/NHxLRv9TCLcKI76Y00b11K5PQE7RSn7Pkndp0202zmmGMZWXbKsjjmHo 9ojcN4MVlUzSXl1ToeO9rPaXtFZLd3iyps9sAqFqfDoV9q6+u/xSYN72G6pJndMre1 KvKkKXpA83itnhiN+MDkE7V4erpDhkS6QoAhWP6ITlWBHKkZ1NWXZ1yDLveabzZV5Q LLV2nJxyBeXHdbYyMa9HBl76w8k1nkOSAciEQ/VQMLL69VktkfFgVrl8UWx9AoLuRY uksZL9I1KjNfOkppGYkDC2ANjg3Nx1jFB5o/X+reCSRLlsqDgsY7dM6CUjBE5Jj/rk ao6KiE2+k0noA== From: sashiko-bot@kernel.org Subject: Re: [PATCH v2 1/2] regulator: dt-bindings: rtq2208: Label mtp-sel-high property as deprecated Reply-To: sashiko-reviews@lists.linux.dev To: cy_huang@richtek.com Cc: devicetree@vger.kernel.org, robh@kernel.org, conor+dt@kernel.org In-Reply-To: <594ebe167b33ca885c040984624e4b5d1382c0e2.1782444299.git.cy_huang@richtek.com> References: <594ebe167b33ca885c040984624e4b5d1382c0e2.1782444299.git.cy_huang@richtek.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Date: Fri, 26 Jun 2026 03:46:51 +0000 Message-Id: <20260626034651.7F4531F000E9@smtp.kernel.org> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Thank you for your contribution! Sashiko AI review found 1 potential issue(= s) to consider: - [Low] Missing block scalar indicator (`|`) in the `description` property = causes a fatal YAML parsing error. -- commit 5c227b25d25e534f0fd83cfc25a3a064d6084614 Author: ChiYuan Huang regulator: dt-bindings: rtq2208: Label mtp-sel-high property as deprecated This commit marks the richtek,mtp-sel-high property as deprecated in the rtq2208 device tree binding schema. It adds the deprecated flag and updates the description to indicate that the property can now be identified by a hardware register. > diff --git a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.= yaml b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml > --- a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml > +++ b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml > @@ -42,11 +42,14 @@ properties: > =20 > richtek,mtp-sel-high: > type: boolean > + deprecated: true > description: > vout register selection based on this boolean value. > false - Using DVS0 register setting to adjust vout > true - Using DVS1 register setting to adjust vout > =20 > + The property is now deprecated. Will be identified by RG HW regist= er. [Severity: Low] Does the addition of this blank line break the YAML syntax? Because the description field lacks a block scalar indicator (| or >), it is parsed as a plain scalar. Plain scalars cannot contain blank lines, which causes a parsing error during make dt_binding_check. Adding a block scalar indicator to the description field would resolve the issue. > + > regulators: > type: object > additionalProperties: false --=20 Sashiko AI review =C2=B7 https://sashiko.dev/#/patchset/cover.1782444299.gi= t.cy_huang@richtek.com?part=3D1