[PATCH] fpga: versal: remove incorrect of_match_ptr annotation

Arnd Bergmann posted 1 patch 11 months, 2 weeks ago
drivers/fpga/versal-fpga.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] fpga: versal: remove incorrect of_match_ptr annotation
Posted by Arnd Bergmann 11 months, 2 weeks ago
From: Arnd Bergmann <arnd@arndb.de>

Building with W=1 shows a warning about versal_fpga_of_match being unused when
CONFIG_OF is disabled:

    drivers/fpga/versal-fpga.c:62:34: error: unused variable 'versal_fpga_of_match' [-Werror,-Wunused-const-variable]

Acked-by: Xu Yilun <yilun.xu@intel.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/fpga/versal-fpga.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/fpga/versal-fpga.c b/drivers/fpga/versal-fpga.c
index 3710e8f01be2..e6189106c468 100644
--- a/drivers/fpga/versal-fpga.c
+++ b/drivers/fpga/versal-fpga.c
@@ -69,7 +69,7 @@ static struct platform_driver versal_fpga_driver = {
 	.probe = versal_fpga_probe,
 	.driver = {
 		.name = "versal_fpga_manager",
-		.of_match_table = of_match_ptr(versal_fpga_of_match),
+		.of_match_table = versal_fpga_of_match,
 	},
 };
 module_platform_driver(versal_fpga_driver);
-- 
2.39.5
Re: [PATCH] fpga: versal: remove incorrect of_match_ptr annotation
Posted by Xu Yilun 11 months, 2 weeks ago
On Tue, Feb 25, 2025 at 05:35:07PM +0100, Arnd Bergmann wrote:
> From: Arnd Bergmann <arnd@arndb.de>
> 
> Building with W=1 shows a warning about versal_fpga_of_match being unused when
> CONFIG_OF is disabled:
> 
>     drivers/fpga/versal-fpga.c:62:34: error: unused variable 'versal_fpga_of_match' [-Werror,-Wunused-const-variable]
> 
> Acked-by: Xu Yilun <yilun.xu@intel.com>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Sorry, I thought someone would take the whole series.

Applied to for-next.

Thanks,
Yilun