]> 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)
commit67ad69cab18d968c6c08908b2e02bbc0b4de588e
tree05d1b964b0407c8a72d58eaa5983300d5faf0d93
parentce88222e1fb53c38d3b94c3b5ceebe1d2ab4956d
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