]> git.baikalelectronics.ru Git - kernel.git/commit
clk: s/clk/core/ for struct clk_core
authorStephen Boyd <sboyd@codeaurora.org>
Thu, 30 Apr 2015 20:54:13 +0000 (13:54 -0700)
committerStephen Boyd <sboyd@codeaurora.org>
Thu, 30 Apr 2015 23:28:24 +0000 (16:28 -0700)
commit36dda01984a4ef5008684184661956d284330d28
tree05d1b964b0407c8a72d58eaa5983300d5faf0d93
parentdd4a0ac5a66093ba1477238fa2d0e835dd935ff6
clk: s/clk/core/ for struct clk_core

While introducing struct clk_core we tried to minimize the diff
by changing the type of 'clk' variables from struct clk to struct
clk_core without changing the names of the variables. Now that
the split is complete, the code is slightly confusing when it
mixes variables called 'clk' and variables called 'core' that are
of the same type struct clk_core. Let's be consistent and use
'core' everywhere we have a struct clk_core pointer and 'clk'
when we have a struct clk pointer.

Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/clk.c