diff mbox series

fpga: versal: remove incorrect of_match_ptr annotation

Message ID 20250225163510.4168911-1-arnd@kernel.org (mailing list archive)
State New
Headers show
Series fpga: versal: remove incorrect of_match_ptr annotation | expand

Commit Message

Arnd Bergmann Feb. 25, 2025, 4:35 p.m. UTC
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(-)

Comments

Xu Yilun March 1, 2025, 9:38 a.m. UTC | #1
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
diff mbox series

Patch

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