clk: samsung: fixed compiler warning [-Wpointer-to-int-cast]
authorPankaj Dubey <pankaj.dubey@samsung.com>
Wed, 26 Feb 2014 02:42:41 +0000 (11:42 +0900)
committerTomasz Figa <t.figa@samsung.com>
Wed, 14 May 2014 17:40:05 +0000 (19:40 +0200)
When compiled using ARM64 cross compiler, gcc complains as

drivers/clk/samsung/clk.c:293:18:
warning: cast from pointer to integer of different size
[-Wpointer-to-int-cast]

Signed-off-by: Pankaj Dubey <pankaj.dubey@samsung.com>
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
drivers/clk/samsung/clk.c

index ce4d8a25dd61bfeacf7d94781c05da700b5c90be..49629c71c9e7769e98e473f784605e877bbf51de 100644 (file)
@@ -293,7 +293,7 @@ void __init samsung_clk_of_register_fixed_ext(struct samsung_clk_provider *ctx,
        for_each_matching_node_and_match(clk_np, clk_matches, &match) {
                if (of_property_read_u32(clk_np, "clock-frequency", &freq))
                        continue;
-               fixed_rate_clk[(u32)match->data].fixed_rate = freq;
+               fixed_rate_clk[(unsigned long)match->data].fixed_rate = freq;
        }
        samsung_clk_register_fixed_rate(ctx, fixed_rate_clk, nr_fixed_rate_clk);
 }