diff options
author | Yixun Lan <yixun.lan@amlogic.com> | 2017-12-11 15:13:43 +0100 |
---|---|---|
committer | Jerome Brunet <jbrunet@baylibre.com> | 2017-12-14 10:12:41 +0100 |
commit | 27aad9054813b503836018aa58d1165f8d8befc8 (patch) | |
tree | 1af0d59082358f0ed97aca1b90cb096aff553de4 /drivers/clk/meson/clkc.h | |
parent | clk: meson: gxbb: remove IGNORE_UNUSED from mmc clocks (diff) | |
download | linux-27aad9054813b503836018aa58d1165f8d8befc8.tar.xz linux-27aad9054813b503836018aa58d1165f8d8befc8.zip |
clk: meson: make the spinlock naming more specific
Make the spinlock more specific, so better for lockdep
debugging and ctags/grep.
Suggested-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Yixun Lan <yixun.lan@amlogic.com>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'drivers/clk/meson/clkc.h')
-rw-r--r-- | drivers/clk/meson/clkc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/meson/clkc.h b/drivers/clk/meson/clkc.h index 1629da9b4141..c2ff0520ce53 100644 --- a/drivers/clk/meson/clkc.h +++ b/drivers/clk/meson/clkc.h @@ -134,7 +134,7 @@ struct meson_clk_audio_divider { struct clk_gate _name = { \ .reg = (void __iomem *) _reg, \ .bit_idx = (_bit), \ - .lock = &clk_lock, \ + .lock = &meson_clk_lock, \ .hw.init = &(struct clk_init_data) { \ .name = #_name, \ .ops = &clk_gate_ops, \ |