2019-09-19 07:36:24

by Pragnesh Patel

[permalink] [raw]
Subject: [PATCH] fixed-regulator: dt-bindings: Fixed building error for compatible property

Compatible property is not of type 'string', so remove const:
from it.

Signed-off-by: Pragnesh Patel <[email protected]>
---
Documentation/devicetree/bindings/regulator/fixed-regulator.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml b/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
index a78150c..f324169 100644
--- a/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
+++ b/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
@@ -30,8 +30,8 @@ if:
properties:
compatible:
enum:
- - const: regulator-fixed
- - const: regulator-fixed-clock
+ - regulator-fixed
+ - regulator-fixed-clock

regulator-name: true

--
2.7.4


2019-09-19 22:22:02

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH] fixed-regulator: dt-bindings: Fixed building error for compatible property

On Thu, Sep 19, 2019 at 1:39 AM Pragnesh Patel
<[email protected]> wrote:
>
> Compatible property is not of type 'string', so remove const:
> from it.
>
> Signed-off-by: Pragnesh Patel <[email protected]>
> ---
> Documentation/devicetree/bindings/regulator/fixed-regulator.yaml | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)

Acked-by: Rob Herring <[email protected]>

2019-09-21 16:03:36

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] fixed-regulator: dt-bindings: Fixed building error for compatible property

On Thu, Sep 19, 2019 at 12:09:04PM +0530, Pragnesh Patel wrote:
> Compatible property is not of type 'string', so remove const:
> from it.

Please use subject lines matching the style for the subsystem. This
makes it easier for people to identify relevant patches. There's no
need to resubmit to fix this alone.


Attachments:
(No filename) (321.00 B)
signature.asc (499.00 B)
Download all attachments

2019-10-01 11:45:55

by Mark Brown

[permalink] [raw]
Subject: Applied "fixed-regulator: dt-bindings: Fixed building error for compatible property" to the regulator tree

The patch

fixed-regulator: dt-bindings: Fixed building error for compatible property

has been applied to the regulator tree at

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

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

From 04a99ce605a780c275e2e9d2547d43fbba3f4d24 Mon Sep 17 00:00:00 2001
From: Pragnesh Patel <[email protected]>
Date: Thu, 19 Sep 2019 12:09:04 +0530
Subject: [PATCH] fixed-regulator: dt-bindings: Fixed building error for
compatible property

Compatible property is not of type 'string', so remove const:
from it.

Signed-off-by: Pragnesh Patel <[email protected]>
Acked-by: Rob Herring <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
---
.../devicetree/bindings/regulator/fixed-regulator.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml b/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
index a78150c47aa2..f32416968197 100644
--- a/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
+++ b/Documentation/devicetree/bindings/regulator/fixed-regulator.yaml
@@ -30,8 +30,8 @@ if:
properties:
compatible:
enum:
- - const: regulator-fixed
- - const: regulator-fixed-clock
+ - regulator-fixed
+ - regulator-fixed-clock

regulator-name: true

--
2.20.1

2019-10-02 19:25:11

by Rob Herring

[permalink] [raw]
Subject: Re: Applied "fixed-regulator: dt-bindings: Fixed building error for compatible property" to the regulator tree

On Tue, Oct 1, 2019 at 6:41 AM Mark Brown <[email protected]> wrote:
>
> The patch
>
> fixed-regulator: dt-bindings: Fixed building error for compatible property
>
> has been applied to the regulator tree at
>
> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git for-5.5

This needs to go into 5.4 fixes.

Rob