Kaynağa Gözat

PM / devfreq: exynos-ppmu: bit-wise operation bugfix.

Make it u64 before left-shifting 32bits.

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
MyungJoo Ham 10 yıl önce
ebeveyn
işleme
86fa4cdb0f
1 değiştirilmiş dosya ile 2 ekleme ve 1 silme
  1. 2 1
      drivers/devfreq/event/exynos-ppmu.c

+ 2 - 1
drivers/devfreq/event/exynos-ppmu.c

@@ -319,7 +319,8 @@ static int exynos_ppmu_v2_get_event(struct devfreq_event_dev *edev,
 	case PPMU_PMNCNT3:
 		pmcnt_high = __raw_readl(info->ppmu.base + PPMU_V2_PMCNT3_HIGH);
 		pmcnt_low = __raw_readl(info->ppmu.base + PPMU_V2_PMCNT3_LOW);
-		load_count = (u64)((pmcnt_high & 0xff) << 32) + (u64)pmcnt_low;
+		load_count = ((u64)((pmcnt_high & 0xff)) << 32)
+			   + (u64)pmcnt_low;
 		break;
 	}
 	edata->load_count = load_count;