From: Masahiro Yamada Date: Fri, 23 Sep 2016 12:29:36 +0000 (+0900) Subject: clk: change the type of clk_hw_onecell_data.num to unsigned int X-Git-Tag: v4.9-rc1~142^2~4 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=5963f19ca2b7e46cafc9647c8390bb20563b91cc;p=linux.git clk: change the type of clk_hw_onecell_data.num to unsigned int The "num" is the number of clk_hw entries in the structure, so "unsigned int" would be a better fit. (size_t looks like data size we count by byte.) Besides, struct clk_onecell_data already uses unsigned int for "clk_num". Signed-off-by: Masahiro Yamada Signed-off-by: Stephen Boyd --- diff --git a/include/linux/clk-provider.h b/include/linux/clk-provider.h index 37b8fdce0e49..af596381fa0f 100644 --- a/include/linux/clk-provider.h +++ b/include/linux/clk-provider.h @@ -772,7 +772,7 @@ struct clk_onecell_data { }; struct clk_hw_onecell_data { - size_t num; + unsigned int num; struct clk_hw *hws[]; };