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

Commit b57987c3 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "scsi: ufs: Fix compiler warning"

parents 8a437073 1b5e9532
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -6812,7 +6812,8 @@ void ufshcd_parse_dev_ref_clk_freq(struct ufs_hba *hba, struct clk *refclk)

	freq = clk_get_rate(refclk);
	if (freq == 0) {
		dev_warn(hba->dev, " (%s) clk_get_rate - %d\n", __func__, freq);
		dev_warn(hba->dev, " (%s) clk_get_rate - %ld\n", __func__,
			freq);
		freq = clk_round_rate(refclk, 19200000);
	}