OSDN Git Service

phy: marvell: drop of_match_ptr for ID table
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sun, 12 Mar 2023 13:26:10 +0000 (14:26 +0100)
committerVinod Koul <vkoul@kernel.org>
Mon, 20 Mar 2023 12:44:59 +0000 (18:14 +0530)
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).  This
also fixes !CONFIG_OF error:

  drivers/phy/marvell/phy-pxa-28nm-hsic.c:192:34: error: ‘mv_hsic_phy_dt_match’ defined but not used [-Werror=unused-const-variable=]
  drivers/phy/marvell/phy-pxa-28nm-usb2.c:324:34: error: ‘mv_usbphy_dt_match’ defined but not used [-Werror=unused-const-variable=]

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20230312132611.352654-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/marvell/phy-pxa-28nm-hsic.c
drivers/phy/marvell/phy-pxa-28nm-usb2.c

index c5c1005..eff6dd6 100644 (file)
@@ -199,7 +199,7 @@ static struct platform_driver mv_hsic_phy_driver = {
        .probe  = mv_hsic_phy_probe,
        .driver = {
                .name   = "mv-hsic-phy",
-               .of_match_table = of_match_ptr(mv_hsic_phy_dt_match),
+               .of_match_table = mv_hsic_phy_dt_match,
        },
 };
 module_platform_driver(mv_hsic_phy_driver);
index 0b390b9..1b2107f 100644 (file)
@@ -331,7 +331,7 @@ static struct platform_driver mv_usb2_phy_driver = {
        .probe  = mv_usb2_phy_probe,
        .driver = {
                .name   = "mv-usb2-phy",
-               .of_match_table = of_match_ptr(mv_usbphy_dt_match),
+               .of_match_table = mv_usbphy_dt_match,
        },
 };
 module_platform_driver(mv_usb2_phy_driver);