]> Git Repo - linux.git/blobdiff - drivers/gpu/drm/exynos/exynos_drm_dsi.c
treewide: Remove uninitialized_var() usage
[linux.git] / drivers / gpu / drm / exynos / exynos_drm_dsi.c
index ee96a95fb6be50824d3483530d5e4ae14135d1df..7a6f6df5e9540abbde6cc7d4ace49733fccdf965 100644 (file)
@@ -547,9 +547,9 @@ static unsigned long exynos_dsi_pll_find_pms(struct exynos_dsi *dsi,
        unsigned long best_freq = 0;
        u32 min_delta = 0xffffffff;
        u8 p_min, p_max;
-       u8 _p, uninitialized_var(best_p);
-       u16 _m, uninitialized_var(best_m);
-       u8 _s, uninitialized_var(best_s);
+       u8 _p, best_p;
+       u16 _m, best_m;
+       u8 _s, best_s;
 
        p_min = DIV_ROUND_UP(fin, (12 * MHZ));
        p_max = fin / (6 * MHZ);
This page took 0.027226 seconds and 4 git commands to generate.