phy: ralink: phy-mt7621-pci: properly print pointer address
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Sat, 8 May 2021 07:09:30 +0000 (09:09 +0200)
committerVinod Koul <vkoul@kernel.org>
Fri, 14 May 2021 10:46:29 +0000 (16:16 +0530)
The way of printing the pointer address for the 'port_base'
address got into compile warnings on some architectures
[-Wpointer-to-int-cast]. Instead of use '%08x' and cast
to an 'unsigned int' just make use of '%px' and avoid the
cast. To avoid not really needed driver verbosity on normal
behaviour change also from 'dev_info' to 'dev_dbg'.

Fixes: d87da32372a0 ("phy: ralink: Add PHY driver for MT7621 PCIe PHY")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20210508070930.5290-7-sergio.paracuellos@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/ralink/phy-mt7621-pci.c

index f56ff10b08851d7ca07078288bfcf5d03c931a9c..242c5d8b863510b90324bbfb759062d2916263fa 100644 (file)
@@ -273,8 +273,8 @@ static struct phy *mt7621_pcie_phy_of_xlate(struct device *dev,
 
        mt7621_phy->has_dual_port = args->args[0];
 
-       dev_info(dev, "PHY for 0x%08x (dual port = %d)\n",
-                (unsigned int)mt7621_phy->port_base, mt7621_phy->has_dual_port);
+       dev_dbg(dev, "PHY for 0x%px (dual port = %d)\n",
+               mt7621_phy->port_base, mt7621_phy->has_dual_port);
 
        return mt7621_phy->phy;
 }