net: smc911x: fix %d confusingly prefixed with 0x in format string

Signed-off-by: Hans Wennborg <hans@hanshq.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Hans Wennborg 2014-08-03 17:19:46 -07:00 committed by David S. Miller
parent 597aec3f93
commit 45dfab6894
1 changed files with 1 additions and 1 deletions

View File

@ -730,7 +730,7 @@ static void smc911x_phy_detect(struct net_device *dev)
lp->phy_type = id1 << 16 | id2; lp->phy_type = id1 << 16 | id2;
} }
DBG(SMC_DEBUG_MISC, dev, "phy_id1=0x%x, phy_id2=0x%x phyaddr=0x%d\n", DBG(SMC_DEBUG_MISC, dev, "phy_id1=0x%x, phy_id2=0x%x phyaddr=0x%x\n",
id1, id2, lp->mii.phy_id); id1, id2, lp->mii.phy_id);
} }