usb: gadget/snps_udc_plat: Remove redundant of_match_ptr()
authorRuan Jinjie <ruanjinjie@huawei.com>
Wed, 9 Aug 2023 08:48:49 +0000 (16:48 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Aug 2023 08:03:13 +0000 (10:03 +0200)
The driver depends on CONFIG_OF, so it is not necessary to use
of_match_ptr() here. Remove of_match_ptr() and CONFIG_OF.

Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com>
Link: https://lore.kernel.org/r/20230809084849.2410477-1-ruanjinjie@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/snps_udc_plat.c

index 35c7a149b977be8f4471c87b53c54a8ab5076506..547af2ed9e5e02c2f1326df9688667d749c00bbe 100644 (file)
@@ -300,7 +300,6 @@ static const struct dev_pm_ops udc_plat_pm_ops = {
 };
 #endif
 
-#if defined(CONFIG_OF)
 static const struct of_device_id of_udc_match[] = {
        { .compatible = "brcm,ns2-udc", },
        { .compatible = "brcm,cygnus-udc", },
@@ -308,14 +307,13 @@ static const struct of_device_id of_udc_match[] = {
        { }
 };
 MODULE_DEVICE_TABLE(of, of_udc_match);
-#endif
 
 static struct platform_driver udc_plat_driver = {
        .probe          = udc_plat_probe,
        .remove_new     = udc_plat_remove,
        .driver         = {
                .name   = "snps-udc-plat",
-               .of_match_table = of_match_ptr(of_udc_match),
+               .of_match_table = of_udc_match,
 #ifdef CONFIG_PM_SLEEP
                .pm     = &udc_plat_pm_ops,
 #endif