linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table
@ 2023-03-11 11:16 Krzysztof Kozlowski
  2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-11 11:16 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions
  Cc: Krzysztof Kozlowski

The driver can match only via the DT table so the table should be always
used and the of_match_ptr does not have any sense (this also allows ACPI
matching via PRP0001, even though it might not be relevant here).

  drivers/i2c/busses/i2c-mt65xx.c:514:34: error: ‘mtk_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/i2c/busses/i2c-mt65xx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-mt65xx.c b/drivers/i2c/busses/i2c-mt65xx.c
index 43dd966d5ef5..59eaefe999b1 100644
--- a/drivers/i2c/busses/i2c-mt65xx.c
+++ b/drivers/i2c/busses/i2c-mt65xx.c
@@ -1546,7 +1546,7 @@ static struct platform_driver mtk_i2c_driver = {
 	.driver = {
 		.name = I2C_DRV_NAME,
 		.pm = &mtk_i2c_pm,
-		.of_match_table = of_match_ptr(mtk_i2c_of_match),
+		.of_match_table = mtk_i2c_of_match,
 	},
 };
 
-- 
2.34.1


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

* [PATCH 2/5] i2c: owl: drop of_match_ptr for ID table
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
@ 2023-03-11 11:16 ` Krzysztof Kozlowski
  2023-03-11 16:05   ` Guenter Roeck
  2023-03-16 19:56   ` Wolfram Sang
  2023-03-11 11:16 ` [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST Krzysztof Kozlowski
                   ` (5 subsequent siblings)
  6 siblings, 2 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-11 11:16 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions
  Cc: Krzysztof Kozlowski

The driver can match only via the DT table so the table should be always
used and the of_match_ptr does not have any sense (this also allows ACPI
matching via PRP0001, even though it might not be relevant here).

  drivers/i2c/busses/i2c-owl.c:510:34: error: ‘owl_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/i2c/busses/i2c-owl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-owl.c b/drivers/i2c/busses/i2c-owl.c
index 98882fe4e965..99ddd8894964 100644
--- a/drivers/i2c/busses/i2c-owl.c
+++ b/drivers/i2c/busses/i2c-owl.c
@@ -519,7 +519,7 @@ static struct platform_driver owl_i2c_driver = {
 	.probe		= owl_i2c_probe,
 	.driver		= {
 		.name	= "owl-i2c",
-		.of_match_table = of_match_ptr(owl_i2c_of_match),
+		.of_match_table = owl_i2c_of_match,
 		.probe_type = PROBE_PREFER_ASYNCHRONOUS,
 	},
 };
-- 
2.34.1


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

* [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
  2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
@ 2023-03-11 11:16 ` Krzysztof Kozlowski
  2023-03-11 16:34   ` Guenter Roeck
  2023-03-29 18:56   ` Wolfram Sang
  2023-03-11 11:16 ` [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused Krzysztof Kozlowski
                   ` (4 subsequent siblings)
  6 siblings, 2 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-11 11:16 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions
  Cc: Krzysztof Kozlowski

The driver can be compile tested with !CONFIG_OF making certain data
unused:

  drivers/i2c/busses/i2c-xiic.c:1202:39: error: ‘xiic_2_00’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/i2c/busses/i2c-xiic.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
index dbb792fc197e..806b447055fb 100644
--- a/drivers/i2c/busses/i2c-xiic.c
+++ b/drivers/i2c/busses/i2c-xiic.c
@@ -1199,11 +1199,11 @@ static const struct i2c_adapter xiic_adapter = {
 	.algo = &xiic_algorithm,
 };
 
+#if defined(CONFIG_OF)
 static const struct xiic_version_data xiic_2_00 = {
 	.quirks = DYNAMIC_MODE_READ_BROKEN_BIT,
 };
 
-#if defined(CONFIG_OF)
 static const struct of_device_id xiic_of_match[] = {
 	{ .compatible = "xlnx,xps-iic-2.00.a", .data = &xiic_2_00 },
 	{ .compatible = "xlnx,axi-iic-2.1", },
-- 
2.34.1


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

* [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
  2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
  2023-03-11 11:16 ` [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST Krzysztof Kozlowski
@ 2023-03-11 11:16 ` Krzysztof Kozlowski
  2023-03-11 16:09   ` Guenter Roeck
  2023-03-16 19:56   ` Wolfram Sang
  2023-03-11 11:16 ` [PATCH 5/5] i2c: synquacer: mark " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  6 siblings, 2 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-11 11:16 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions
  Cc: Krzysztof Kozlowski

The driver can be compile tested with !CONFIG_OF or !CONFIG_ACPI making
certain data unused:

  drivers/i2c/busses/i2c-cros-ec-tunnel.c:295:34: error: ‘cros_ec_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/i2c/busses/i2c-cros-ec-tunnel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
index 4e787dc709f9..8b3ff5bb14d8 100644
--- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c
+++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
@@ -292,13 +292,13 @@ static int ec_i2c_remove(struct platform_device *dev)
 	return 0;
 }
 
-static const struct of_device_id cros_ec_i2c_of_match[] = {
+static const struct of_device_id cros_ec_i2c_of_match[] __maybe_unused = {
 	{ .compatible = "google,cros-ec-i2c-tunnel" },
 	{},
 };
 MODULE_DEVICE_TABLE(of, cros_ec_i2c_of_match);
 
-static const struct acpi_device_id cros_ec_i2c_tunnel_acpi_id[] = {
+static const struct acpi_device_id cros_ec_i2c_tunnel_acpi_id[] __maybe_unused = {
 	{ "GOOG0012", 0 },
 	{ }
 };
-- 
2.34.1


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

* [PATCH 5/5] i2c: synquacer: mark OF related data as maybe unused
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-03-11 11:16 ` [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused Krzysztof Kozlowski
@ 2023-03-11 11:16 ` Krzysztof Kozlowski
  2023-03-11 16:35   ` Guenter Roeck
  2023-03-29 18:56   ` Wolfram Sang
  2023-03-11 16:04 ` [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Guenter Roeck
                   ` (2 subsequent siblings)
  6 siblings, 2 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2023-03-11 11:16 UTC (permalink / raw)
  To: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions
  Cc: Krzysztof Kozlowski

The driver can be compile tested with !CONFIG_OF making certain data
unused:

  drivers/i2c/busses/i2c-synquacer.c:632:34: error: ‘synquacer_i2c_dt_ids’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 drivers/i2c/busses/i2c-synquacer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-synquacer.c b/drivers/i2c/busses/i2c-synquacer.c
index e4026c5416b1..50d19cf99a03 100644
--- a/drivers/i2c/busses/i2c-synquacer.c
+++ b/drivers/i2c/busses/i2c-synquacer.c
@@ -629,7 +629,7 @@ static int synquacer_i2c_remove(struct platform_device *pdev)
 	return 0;
 };
 
-static const struct of_device_id synquacer_i2c_dt_ids[] = {
+static const struct of_device_id synquacer_i2c_dt_ids[] __maybe_unused = {
 	{ .compatible = "socionext,synquacer-i2c" },
 	{ /* sentinel */ }
 };
-- 
2.34.1


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

* Re: [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-03-11 11:16 ` [PATCH 5/5] i2c: synquacer: mark " Krzysztof Kozlowski
@ 2023-03-11 16:04 ` Guenter Roeck
  2023-03-13  8:47 ` AngeloGioacchino Del Regno
  2023-03-16 19:56 ` Wolfram Sang
  6 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2023-03-11 16:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

On Sat, Mar 11, 2023 at 3:17 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not have any sense (this also allows ACPI
> matching via PRP0001, even though it might not be relevant here).
>
>   drivers/i2c/busses/i2c-mt65xx.c:514:34: error: ‘mtk_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/i2c/busses/i2c-mt65xx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/i2c-mt65xx.c b/drivers/i2c/busses/i2c-mt65xx.c
> index 43dd966d5ef5..59eaefe999b1 100644
> --- a/drivers/i2c/busses/i2c-mt65xx.c
> +++ b/drivers/i2c/busses/i2c-mt65xx.c
> @@ -1546,7 +1546,7 @@ static struct platform_driver mtk_i2c_driver = {
>         .driver = {
>                 .name = I2C_DRV_NAME,
>                 .pm = &mtk_i2c_pm,
> -               .of_match_table = of_match_ptr(mtk_i2c_of_match),
> +               .of_match_table = mtk_i2c_of_match,
>         },
>  };
>
> --
> 2.34.1
>

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

* Re: [PATCH 2/5] i2c: owl: drop of_match_ptr for ID table
  2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
@ 2023-03-11 16:05   ` Guenter Roeck
  2023-03-16 19:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2023-03-11 16:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

On Sat, Mar 11, 2023 at 3:17 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not have any sense (this also allows ACPI
> matching via PRP0001, even though it might not be relevant here).
>
>   drivers/i2c/busses/i2c-owl.c:510:34: error: ‘owl_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/i2c/busses/i2c-owl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/i2c-owl.c b/drivers/i2c/busses/i2c-owl.c
> index 98882fe4e965..99ddd8894964 100644
> --- a/drivers/i2c/busses/i2c-owl.c
> +++ b/drivers/i2c/busses/i2c-owl.c
> @@ -519,7 +519,7 @@ static struct platform_driver owl_i2c_driver = {
>         .probe          = owl_i2c_probe,
>         .driver         = {
>                 .name   = "owl-i2c",
> -               .of_match_table = of_match_ptr(owl_i2c_of_match),
> +               .of_match_table = owl_i2c_of_match,
>                 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
>         },
>  };
> --
> 2.34.1
>

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

* Re: [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused
  2023-03-11 11:16 ` [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused Krzysztof Kozlowski
@ 2023-03-11 16:09   ` Guenter Roeck
  2023-03-16 19:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2023-03-11 16:09 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

On Sat, Mar 11, 2023 at 3:17 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The driver can be compile tested with !CONFIG_OF or !CONFIG_ACPI making
> certain data unused:
>
>   drivers/i2c/busses/i2c-cros-ec-tunnel.c:295:34: error: ‘cros_ec_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/i2c/busses/i2c-cros-ec-tunnel.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
> index 4e787dc709f9..8b3ff5bb14d8 100644
> --- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c
> +++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
> @@ -292,13 +292,13 @@ static int ec_i2c_remove(struct platform_device *dev)
>         return 0;
>  }
>
> -static const struct of_device_id cros_ec_i2c_of_match[] = {
> +static const struct of_device_id cros_ec_i2c_of_match[] __maybe_unused = {
>         { .compatible = "google,cros-ec-i2c-tunnel" },
>         {},
>  };
>  MODULE_DEVICE_TABLE(of, cros_ec_i2c_of_match);
>
> -static const struct acpi_device_id cros_ec_i2c_tunnel_acpi_id[] = {
> +static const struct acpi_device_id cros_ec_i2c_tunnel_acpi_id[] __maybe_unused = {
>         { "GOOG0012", 0 },
>         { }
>  };
> --
> 2.34.1
>

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

* Re: [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST
  2023-03-11 11:16 ` [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST Krzysztof Kozlowski
@ 2023-03-11 16:34   ` Guenter Roeck
  2023-03-29 18:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2023-03-11 16:34 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

On Sat, Mar 11, 2023 at 3:17 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The driver can be compile tested with !CONFIG_OF making certain data
> unused:
>
>   drivers/i2c/busses/i2c-xiic.c:1202:39: error: ‘xiic_2_00’ defined but not used [-Werror=unused-const-variable=]
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/i2c/busses/i2c-xiic.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c
> index dbb792fc197e..806b447055fb 100644
> --- a/drivers/i2c/busses/i2c-xiic.c
> +++ b/drivers/i2c/busses/i2c-xiic.c
> @@ -1199,11 +1199,11 @@ static const struct i2c_adapter xiic_adapter = {
>         .algo = &xiic_algorithm,
>  };
>
> +#if defined(CONFIG_OF)
>  static const struct xiic_version_data xiic_2_00 = {
>         .quirks = DYNAMIC_MODE_READ_BROKEN_BIT,
>  };
>
> -#if defined(CONFIG_OF)
>  static const struct of_device_id xiic_of_match[] = {
>         { .compatible = "xlnx,xps-iic-2.00.a", .data = &xiic_2_00 },
>         { .compatible = "xlnx,axi-iic-2.1", },
> --
> 2.34.1
>

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

* Re: [PATCH 5/5] i2c: synquacer: mark OF related data as maybe unused
  2023-03-11 11:16 ` [PATCH 5/5] i2c: synquacer: mark " Krzysztof Kozlowski
@ 2023-03-11 16:35   ` Guenter Roeck
  2023-03-29 18:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2023-03-11 16:35 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

On Sat, Mar 11, 2023 at 3:17 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:
>
> The driver can be compile tested with !CONFIG_OF making certain data
> unused:
>
>   drivers/i2c/busses/i2c-synquacer.c:632:34: error: ‘synquacer_i2c_dt_ids’ defined but not used [-Werror=unused-const-variable=]
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <groeck@chromium.org>

> ---
>  drivers/i2c/busses/i2c-synquacer.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/i2c/busses/i2c-synquacer.c b/drivers/i2c/busses/i2c-synquacer.c
> index e4026c5416b1..50d19cf99a03 100644
> --- a/drivers/i2c/busses/i2c-synquacer.c
> +++ b/drivers/i2c/busses/i2c-synquacer.c
> @@ -629,7 +629,7 @@ static int synquacer_i2c_remove(struct platform_device *pdev)
>         return 0;
>  };
>
> -static const struct of_device_id synquacer_i2c_dt_ids[] = {
> +static const struct of_device_id synquacer_i2c_dt_ids[] __maybe_unused = {
>         { .compatible = "socionext,synquacer-i2c" },
>         { /* sentinel */ }
>  };
> --
> 2.34.1
>

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

* Re: [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-03-11 16:04 ` [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Guenter Roeck
@ 2023-03-13  8:47 ` AngeloGioacchino Del Regno
  2023-03-16 19:56 ` Wolfram Sang
  6 siblings, 0 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-03-13  8:47 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Benson Leung, Guenter Roeck, Qii Wang,
	Matthias Brugger, Andreas Färber, Manivannan Sadhasivam,
	Ard Biesheuvel, Michal Simek, linux-i2c, chrome-platform,
	linux-kernel, linux-arm-kernel, linux-mediatek, linux-actions

Il 11/03/23 12:16, Krzysztof Kozlowski ha scritto:
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not have any sense (this also allows ACPI
> matching via PRP0001, even though it might not be relevant here).
> 
>    drivers/i2c/busses/i2c-mt65xx.c:514:34: error: ‘mtk_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>



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

* Re: [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table
  2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
                   ` (5 preceding siblings ...)
  2023-03-13  8:47 ` AngeloGioacchino Del Regno
@ 2023-03-16 19:56 ` Wolfram Sang
  6 siblings, 0 replies; 16+ messages in thread
From: Wolfram Sang @ 2023-03-16 19:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

[-- Attachment #1: Type: text/plain, Size: 533 bytes --]

On Sat, Mar 11, 2023 at 12:16:54PM +0100, Krzysztof Kozlowski wrote:
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not have any sense (this also allows ACPI
> matching via PRP0001, even though it might not be relevant here).
> 
>   drivers/i2c/busses/i2c-mt65xx.c:514:34: error: ‘mtk_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 2/5] i2c: owl: drop of_match_ptr for ID table
  2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
  2023-03-11 16:05   ` Guenter Roeck
@ 2023-03-16 19:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Wolfram Sang @ 2023-03-16 19:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

[-- Attachment #1: Type: text/plain, Size: 530 bytes --]

On Sat, Mar 11, 2023 at 12:16:55PM +0100, Krzysztof Kozlowski wrote:
> The driver can match only via the DT table so the table should be always
> used and the of_match_ptr does not have any sense (this also allows ACPI
> matching via PRP0001, even though it might not be relevant here).
> 
>   drivers/i2c/busses/i2c-owl.c:510:34: error: ‘owl_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused
  2023-03-11 11:16 ` [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused Krzysztof Kozlowski
  2023-03-11 16:09   ` Guenter Roeck
@ 2023-03-16 19:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Wolfram Sang @ 2023-03-16 19:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

[-- Attachment #1: Type: text/plain, Size: 423 bytes --]

On Sat, Mar 11, 2023 at 12:16:57PM +0100, Krzysztof Kozlowski wrote:
> The driver can be compile tested with !CONFIG_OF or !CONFIG_ACPI making
> certain data unused:
> 
>   drivers/i2c/busses/i2c-cros-ec-tunnel.c:295:34: error: ‘cros_ec_i2c_of_match’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 5/5] i2c: synquacer: mark OF related data as maybe unused
  2023-03-11 11:16 ` [PATCH 5/5] i2c: synquacer: mark " Krzysztof Kozlowski
  2023-03-11 16:35   ` Guenter Roeck
@ 2023-03-29 18:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Wolfram Sang @ 2023-03-29 18:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

[-- Attachment #1: Type: text/plain, Size: 402 bytes --]

On Sat, Mar 11, 2023 at 12:16:58PM +0100, Krzysztof Kozlowski wrote:
> The driver can be compile tested with !CONFIG_OF making certain data
> unused:
> 
>   drivers/i2c/busses/i2c-synquacer.c:632:34: error: ‘synquacer_i2c_dt_ids’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST
  2023-03-11 11:16 ` [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST Krzysztof Kozlowski
  2023-03-11 16:34   ` Guenter Roeck
@ 2023-03-29 18:56   ` Wolfram Sang
  1 sibling, 0 replies; 16+ messages in thread
From: Wolfram Sang @ 2023-03-29 18:56 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Benson Leung, Guenter Roeck, Qii Wang, Matthias Brugger,
	AngeloGioacchino Del Regno, Andreas Färber,
	Manivannan Sadhasivam, Ard Biesheuvel, Michal Simek, linux-i2c,
	chrome-platform, linux-kernel, linux-arm-kernel, linux-mediatek,
	linux-actions

[-- Attachment #1: Type: text/plain, Size: 387 bytes --]

On Sat, Mar 11, 2023 at 12:16:56PM +0100, Krzysztof Kozlowski wrote:
> The driver can be compile tested with !CONFIG_OF making certain data
> unused:
> 
>   drivers/i2c/busses/i2c-xiic.c:1202:39: error: ‘xiic_2_00’ defined but not used [-Werror=unused-const-variable=]
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2023-03-29 18:56 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-11 11:16 [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Krzysztof Kozlowski
2023-03-11 11:16 ` [PATCH 2/5] i2c: owl: " Krzysztof Kozlowski
2023-03-11 16:05   ` Guenter Roeck
2023-03-16 19:56   ` Wolfram Sang
2023-03-11 11:16 ` [PATCH 3/5] i2c: xiic: hide OF related data for COMPILE_TEST Krzysztof Kozlowski
2023-03-11 16:34   ` Guenter Roeck
2023-03-29 18:56   ` Wolfram Sang
2023-03-11 11:16 ` [PATCH 4/5] i2c: cros-ec-tunnel: Mark ACPI and OF related data as maybe unused Krzysztof Kozlowski
2023-03-11 16:09   ` Guenter Roeck
2023-03-16 19:56   ` Wolfram Sang
2023-03-11 11:16 ` [PATCH 5/5] i2c: synquacer: mark " Krzysztof Kozlowski
2023-03-11 16:35   ` Guenter Roeck
2023-03-29 18:56   ` Wolfram Sang
2023-03-11 16:04 ` [PATCH 1/5] i2c: mt65xx: drop of_match_ptr for ID table Guenter Roeck
2023-03-13  8:47 ` AngeloGioacchino Del Regno
2023-03-16 19:56 ` Wolfram Sang

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