Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 87e287c1 authored by John Garry's avatar John Garry Committed by Martin K. Petersen
Browse files

scsi: hisi_sas: downgrade refclk message



The message to inform that the controller has no refclk
is currently at warning level, which is unnecessary, so
downgrade to debug.

Signed-off-by: default avatarJohn Garry <john.garry@huawei.com>
Reviewed-by: default avatarXiang Chen <chenxiang66@hisilicon.com>
Reviewed-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent c399acfb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1453,7 +1453,7 @@ static struct Scsi_Host *hisi_sas_shost_alloc(struct platform_device *pdev,

	refclk = devm_clk_get(&pdev->dev, NULL);
	if (IS_ERR(refclk))
		dev_info(dev, "no ref clk property\n");
		dev_dbg(dev, "no ref clk property\n");
	else
		hisi_hba->refclk_frequency_mhz = clk_get_rate(refclk) / 1000000;