diff mbox series

phy: ralink: phy-mt7621-pci: drop 'of_match_ptr' to fix -Wunused-const-variable

Message ID 20210603043219.32646-1-sergio.paracuellos@gmail.com
State Accepted
Commit d6e9e8e5dd53419814eb54803b4ab3682b55cebe
Headers show
Series phy: ralink: phy-mt7621-pci: drop 'of_match_ptr' to fix -Wunused-const-variable | expand

Commit Message

Sergio Paracuellos June 3, 2021, 4:32 a.m. UTC
The of_device_id is included unconditionally by of.h header and used
in the driver as well. Remove of_match_ptr to fix W=1 compile test
warning with !CONFIG_OF:

drivers/phy/ralink/phy-mt7621-pci.c:341:34: warning: unused variable 'mt7621_pci_phy_ids' [-Wunused-const-variable]

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
---
 drivers/phy/ralink/phy-mt7621-pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul June 3, 2021, 5:48 a.m. UTC | #1
On 03-06-21, 06:32, Sergio Paracuellos wrote:
> The of_device_id is included unconditionally by of.h header and used
> in the driver as well. Remove of_match_ptr to fix W=1 compile test
> warning with !CONFIG_OF:

Applied, thanks
diff mbox series

Patch

diff --git a/drivers/phy/ralink/phy-mt7621-pci.c b/drivers/phy/ralink/phy-mt7621-pci.c
index 242c5d8b8635..5e6530f545b5 100644
--- a/drivers/phy/ralink/phy-mt7621-pci.c
+++ b/drivers/phy/ralink/phy-mt7621-pci.c
@@ -348,7 +348,7 @@  static struct platform_driver mt7621_pci_phy_driver = {
 	.probe = mt7621_pci_phy_probe,
 	.driver = {
 		.name = "mt7621-pci-phy",
-		.of_match_table = of_match_ptr(mt7621_pci_phy_ids),
+		.of_match_table = mt7621_pci_phy_ids,
 	},
 };