linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data()
@ 2023-05-14 19:19 Marek Vasut
  2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Marek Vasut @ 2023-05-14 19:19 UTC (permalink / raw)
  To: linux-clk
  Cc: Marek Vasut, Luca Ceresoli, Alex Helms, Geert Uytterhoeven,
	Magnus Damm, Michael Turquette, Nathan Chancellor,
	Nick Desaulniers, Stephen Boyd, Tom Rix, linux-renesas-soc

Use device_get_match_data() which, unlike of_device_get_match_data(),
is compatible with other firmware interfaces than just OF.

Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Alex Helms <alexander.helms.jy@renesas.com>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>
Cc: Magnus Damm <magnus.damm@gmail.com>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: Tom Rix <trix@redhat.com>
Cc: linux-clk@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org
---
V2: - Explicitly include linux/property.h
    - Add RB from Luca
---
 drivers/clk/clk-versaclock5.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/clk/clk-versaclock5.c b/drivers/clk/clk-versaclock5.c
index 5452471b7ba5..28ef1e9a3c56 100644
--- a/drivers/clk/clk-versaclock5.c
+++ b/drivers/clk/clk-versaclock5.c
@@ -20,6 +20,7 @@
 #include <linux/module.h>
 #include <linux/of.h>
 #include <linux/of_platform.h>
+#include <linux/property.h>
 #include <linux/regmap.h>
 #include <linux/slab.h>
 
@@ -953,7 +954,7 @@ static int vc5_probe(struct i2c_client *client)
 
 	i2c_set_clientdata(client, vc5);
 	vc5->client = client;
-	vc5->chip_info = of_device_get_match_data(&client->dev);
+	vc5->chip_info = device_get_match_data(&client->dev);
 
 	vc5->pin_xin = devm_clk_get(&client->dev, "xin");
 	if (PTR_ERR(vc5->pin_xin) == -EPROBE_DEFER)
-- 
2.39.2


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

* [PATCH v2 2/2] clk: vc7: Use device_get_match_data() instead of of_device_get_match_data()
  2023-05-14 19:19 [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data() Marek Vasut
@ 2023-05-14 19:19 ` Marek Vasut
  2023-05-15  7:28   ` Geert Uytterhoeven
  2023-06-09  0:09   ` Stephen Boyd
  2023-05-15  7:27 ` [PATCH v2 1/2] clk: vc5: " Geert Uytterhoeven
  2023-06-09  0:08 ` Stephen Boyd
  2 siblings, 2 replies; 6+ messages in thread
From: Marek Vasut @ 2023-05-14 19:19 UTC (permalink / raw)
  To: linux-clk
  Cc: Marek Vasut, Alex Helms, Geert Uytterhoeven, Luca Ceresoli,
	Magnus Damm, Michael Turquette, Nathan Chancellor,
	Nick Desaulniers, Stephen Boyd, Tom Rix, linux-renesas-soc

Use device_get_match_data() which, unlike of_device_get_match_data(),
is compatible with other firmware interfaces than just OF.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Alex Helms <alexander.helms.jy@renesas.com>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>
Cc: Magnus Damm <magnus.damm@gmail.com>
Cc: Michael Turquette <mturquette@baylibre.com>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: Tom Rix <trix@redhat.com>
Cc: linux-clk@vger.kernel.org
Cc: linux-renesas-soc@vger.kernel.org
---
V2: Explicitly include linux/property.h
---
 drivers/clk/clk-versaclock7.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/clk/clk-versaclock7.c b/drivers/clk/clk-versaclock7.c
index 0ae191f50b4b..42abd5da6675 100644
--- a/drivers/clk/clk-versaclock7.c
+++ b/drivers/clk/clk-versaclock7.c
@@ -15,6 +15,7 @@
 #include <linux/module.h>
 #include <linux/of.h>
 #include <linux/of_platform.h>
+#include <linux/property.h>
 #include <linux/regmap.h>
 #include <linux/swab.h>
 
@@ -1108,7 +1109,7 @@ static int vc7_probe(struct i2c_client *client)
 
 	i2c_set_clientdata(client, vc7);
 	vc7->client = client;
-	vc7->chip_info = of_device_get_match_data(&client->dev);
+	vc7->chip_info = device_get_match_data(&client->dev);
 
 	vc7->pin_xin = devm_clk_get(&client->dev, "xin");
 	if (PTR_ERR(vc7->pin_xin) == -EPROBE_DEFER) {
-- 
2.39.2


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

* Re: [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data()
  2023-05-14 19:19 [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data() Marek Vasut
  2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
@ 2023-05-15  7:27 ` Geert Uytterhoeven
  2023-06-09  0:08 ` Stephen Boyd
  2 siblings, 0 replies; 6+ messages in thread
From: Geert Uytterhoeven @ 2023-05-15  7:27 UTC (permalink / raw)
  To: Marek Vasut
  Cc: linux-clk, Luca Ceresoli, Alex Helms, Geert Uytterhoeven,
	Magnus Damm, Michael Turquette, Nathan Chancellor,
	Nick Desaulniers, Stephen Boyd, Tom Rix, linux-renesas-soc

On Sun, May 14, 2023 at 9:20 PM Marek Vasut
<marek.vasut+renesas@mailbox.org> wrote:
> Use device_get_match_data() which, unlike of_device_get_match_data(),
> is compatible with other firmware interfaces than just OF.
>
> Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---
> Cc: Alex Helms <alexander.helms.jy@renesas.com>
> Cc: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>
> Cc: Magnus Damm <magnus.damm@gmail.com>
> Cc: Michael Turquette <mturquette@baylibre.com>
> Cc: Nathan Chancellor <nathan@kernel.org>
> Cc: Nick Desaulniers <ndesaulniers@google.com>
> Cc: Stephen Boyd <sboyd@kernel.org>
> Cc: Tom Rix <trix@redhat.com>
> Cc: linux-clk@vger.kernel.org
> Cc: linux-renesas-soc@vger.kernel.org
> ---
> V2: - Explicitly include linux/property.h
>     - Add RB from Luca

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH v2 2/2] clk: vc7: Use device_get_match_data() instead of of_device_get_match_data()
  2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
@ 2023-05-15  7:28   ` Geert Uytterhoeven
  2023-06-09  0:09   ` Stephen Boyd
  1 sibling, 0 replies; 6+ messages in thread
From: Geert Uytterhoeven @ 2023-05-15  7:28 UTC (permalink / raw)
  To: Marek Vasut
  Cc: linux-clk, Alex Helms, Luca Ceresoli, Magnus Damm,
	Michael Turquette, Nathan Chancellor, Nick Desaulniers,
	Stephen Boyd, Tom Rix, linux-renesas-soc

On Sun, May 14, 2023 at 9:20 PM Marek Vasut
<marek.vasut+renesas@mailbox.org> wrote:
> Use device_get_match_data() which, unlike of_device_get_match_data(),
> is compatible with other firmware interfaces than just OF.
>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---
> Cc: Alex Helms <alexander.helms.jy@renesas.com>
> Cc: Geert Uytterhoeven <geert+renesas@glider.be>
> Cc: Luca Ceresoli <luca.ceresoli@bootlin.com>
> Cc: Magnus Damm <magnus.damm@gmail.com>
> Cc: Michael Turquette <mturquette@baylibre.com>
> Cc: Nathan Chancellor <nathan@kernel.org>
> Cc: Nick Desaulniers <ndesaulniers@google.com>
> Cc: Stephen Boyd <sboyd@kernel.org>
> Cc: Tom Rix <trix@redhat.com>
> Cc: linux-clk@vger.kernel.org
> Cc: linux-renesas-soc@vger.kernel.org
> ---
> V2: Explicitly include linux/property.h

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data()
  2023-05-14 19:19 [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data() Marek Vasut
  2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
  2023-05-15  7:27 ` [PATCH v2 1/2] clk: vc5: " Geert Uytterhoeven
@ 2023-06-09  0:08 ` Stephen Boyd
  2 siblings, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2023-06-09  0:08 UTC (permalink / raw)
  To: Marek Vasut, linux-clk
  Cc: Marek Vasut, Luca Ceresoli, Alex Helms, Geert Uytterhoeven,
	Magnus Damm, Michael Turquette, Nathan Chancellor,
	Nick Desaulniers, Tom Rix, linux-renesas-soc

Quoting Marek Vasut (2023-05-14 12:19:58)
> Use device_get_match_data() which, unlike of_device_get_match_data(),
> is compatible with other firmware interfaces than just OF.
> 
> Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---

Applied to clk-next

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

* Re: [PATCH v2 2/2] clk: vc7: Use device_get_match_data() instead of of_device_get_match_data()
  2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
  2023-05-15  7:28   ` Geert Uytterhoeven
@ 2023-06-09  0:09   ` Stephen Boyd
  1 sibling, 0 replies; 6+ messages in thread
From: Stephen Boyd @ 2023-06-09  0:09 UTC (permalink / raw)
  To: Marek Vasut, linux-clk
  Cc: Marek Vasut, Alex Helms, Geert Uytterhoeven, Luca Ceresoli,
	Magnus Damm, Michael Turquette, Nathan Chancellor,
	Nick Desaulniers, Tom Rix, linux-renesas-soc

Quoting Marek Vasut (2023-05-14 12:19:59)
> Use device_get_match_data() which, unlike of_device_get_match_data(),
> is compatible with other firmware interfaces than just OF.
> 
> Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
> ---

Applied to clk-next

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

end of thread, other threads:[~2023-06-09  0:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-14 19:19 [PATCH v2 1/2] clk: vc5: Use device_get_match_data() instead of of_device_get_match_data() Marek Vasut
2023-05-14 19:19 ` [PATCH v2 2/2] clk: vc7: " Marek Vasut
2023-05-15  7:28   ` Geert Uytterhoeven
2023-06-09  0:09   ` Stephen Boyd
2023-05-15  7:27 ` [PATCH v2 1/2] clk: vc5: " Geert Uytterhoeven
2023-06-09  0:08 ` Stephen Boyd

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).