devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section
@ 2025-03-18 11:07 cy_huang
  2025-03-18 11:07 ` [PATCH v3 1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated cy_huang
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: cy_huang @ 2025-03-18 11:07 UTC (permalink / raw)
  To: Mark Brown, Krzysztof Kozlowski, Conor Dooley
  Cc: ChiYuan Huang, Rob Herring, linux-kernel, devicetree

From: ChiYuan Huang <cy_huang@richtek.com>

The old v1 series are here for the reference
https://lore.kernel.org/lkml/cover.1742204502.git.cy_huang@richtek.com/

Since the subset of v1 patch series are accepted, there's only one
document change are left and still need to be reviewed.

ChiYuan Huang (2):
  regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as
    deprecated
  regulator: dt-bindings: rtq2208: Cleanup whitespace

 .../devicetree/bindings/regulator/richtek,rtq2208.yaml         | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v3 1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated
  2025-03-18 11:07 [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section cy_huang
@ 2025-03-18 11:07 ` cy_huang
  2025-03-18 11:07 ` [PATCH v3 2/2] regulator: dt-bindings: rtq2208: Cleanup whitespace cy_huang
  2025-03-18 15:00 ` [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: cy_huang @ 2025-03-18 11:07 UTC (permalink / raw)
  To: Mark Brown, Krzysztof Kozlowski, Conor Dooley
  Cc: ChiYuan Huang, Rob Herring, linux-kernel, devicetree,
	Krzysztof Kozlowski

From: ChiYuan Huang <cy_huang@richtek.com>

Since the check for fixed LDO VOUT can be identified by the HW register,
mark the unnecessary property as deprecated.

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
---
V3
- Separate trailing white removal into another commit

v2
- Mark the property as deprecated
---
 Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
index 87accc6f13b8..a584ce54012c 100644
--- a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
+++ b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
@@ -77,6 +77,7 @@ properties:
 
         properties:
           richtek,fixed-microvolt:
+            deprecated: true
             description: |
               This property can be used to set a fixed operating voltage that lies outside
               the range of the regulator's adjustable mode.
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH v3 2/2] regulator: dt-bindings: rtq2208: Cleanup whitespace
  2025-03-18 11:07 [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section cy_huang
  2025-03-18 11:07 ` [PATCH v3 1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated cy_huang
@ 2025-03-18 11:07 ` cy_huang
  2025-03-18 15:00 ` [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: cy_huang @ 2025-03-18 11:07 UTC (permalink / raw)
  To: Mark Brown, Krzysztof Kozlowski, Conor Dooley
  Cc: ChiYuan Huang, Rob Herring, linux-kernel, devicetree

From: ChiYuan Huang <cy_huang@richtek.com>

Remove the whitespace that checkpatch scaned.

Signed-off-by: ChiYuan Huang <cy_huang@richtek.com>
---
 .../devicetree/bindings/regulator/richtek,rtq2208.yaml          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
index a584ce54012c..022c1f197364 100644
--- a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
+++ b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml
@@ -39,7 +39,7 @@ properties:
 
   interrupts:
     maxItems: 1
-    
+
   richtek,mtp-sel-high:
     type: boolean
     description:
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section
  2025-03-18 11:07 [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section cy_huang
  2025-03-18 11:07 ` [PATCH v3 1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated cy_huang
  2025-03-18 11:07 ` [PATCH v3 2/2] regulator: dt-bindings: rtq2208: Cleanup whitespace cy_huang
@ 2025-03-18 15:00 ` Mark Brown
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2025-03-18 15:00 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Conor Dooley, cy_huang
  Cc: Rob Herring, linux-kernel, devicetree

On Tue, 18 Mar 2025 19:07:03 +0800, cy_huang@richtek.com wrote:
> The old v1 series are here for the reference
> https://lore.kernel.org/lkml/cover.1742204502.git.cy_huang@richtek.com/
> 
> Since the subset of v1 patch series are accepted, there's only one
> document change are left and still need to be reviewed.
> 
> ChiYuan Huang (2):
>   regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as
>     deprecated
>   regulator: dt-bindings: rtq2208: Cleanup whitespace
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-next

Thanks!

[1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated
      commit: 64b3fb38b45f7f36954801c45d9b7c19d82d6f83
[2/2] regulator: dt-bindings: rtq2208: Cleanup whitespace
      commit: 5e9491370a58bee1784999aa42f48f1f7289f641

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-03-18 15:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-18 11:07 [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section cy_huang
2025-03-18 11:07 ` [PATCH v3 1/2] regulator: dt-bindings: rtq2208: Mark fixed LDO VOUT property as deprecated cy_huang
2025-03-18 11:07 ` [PATCH v3 2/2] regulator: dt-bindings: rtq2208: Cleanup whitespace cy_huang
2025-03-18 15:00 ` [PATCH v3 0/2] regulator: rtq2208: Fix incorrect code section Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).