mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
net: hns: fix the error info when dma_set_mask_and_coherent fail
The error info should be printed as "set mask to 64bit fail!" instead of "set mask to 32bit fail!" in dma_set_mask_and_coherent(). Signed-off-by: Qianqian Xie <xieqianqian@huawei.com> Signed-off-by: Yisen Zhuang <Yisen.Zhuang@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f6c2df1e5b
commit
39c9441794
@ -1972,7 +1972,7 @@ static int hns_nic_dev_probe(struct platform_device *pdev)
|
||||
if (!dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)))
|
||||
dev_dbg(dev, "set mask to 64bit\n");
|
||||
else
|
||||
dev_err(dev, "set mask to 32bit fail!\n");
|
||||
dev_err(dev, "set mask to 64bit fail!\n");
|
||||
|
||||
/* carrier off reporting is important to ethtool even BEFORE open */
|
||||
netif_carrier_off(ndev);
|
||||
|
Loading…
Reference in New Issue
Block a user