Merge tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
Pull clk fixes from Stephen Boyd: "Two small fixes - Initialize a spinlock in the stm32 reset code - Add dt bindings to the clk maintainer filepattern" * tag 'clk-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux: MAINTAINERS: add include/dt-bindings/clock to COMMON CLK FRAMEWORK clk: stm32: rcc_reset: Fix missing spin_lock_init()
This commit is contained in:
@@ -4976,6 +4976,7 @@ Q: http://patchwork.kernel.org/project/linux-clk/list/
|
|||||||
T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
|
||||||
F: Documentation/devicetree/bindings/clock/
|
F: Documentation/devicetree/bindings/clock/
|
||||||
F: drivers/clk/
|
F: drivers/clk/
|
||||||
|
F: include/dt-bindings/clock/
|
||||||
F: include/linux/clk-pr*
|
F: include/linux/clk-pr*
|
||||||
F: include/linux/clk/
|
F: include/linux/clk/
|
||||||
F: include/linux/of_clk.h
|
F: include/linux/of_clk.h
|
||||||
|
|||||||
@@ -111,6 +111,7 @@ int stm32_rcc_reset_init(struct device *dev, const struct of_device_id *match,
|
|||||||
if (!reset_data)
|
if (!reset_data)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
spin_lock_init(&reset_data->lock);
|
||||||
reset_data->membase = base;
|
reset_data->membase = base;
|
||||||
reset_data->rcdev.owner = THIS_MODULE;
|
reset_data->rcdev.owner = THIS_MODULE;
|
||||||
reset_data->rcdev.ops = &stm32_reset_ops;
|
reset_data->rcdev.ops = &stm32_reset_ops;
|
||||||
|
|||||||
Reference in New Issue
Block a user