mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-09 06:43:09 +00:00
pwm: meson: Add missing spin_lock_init()
The driver uses the spin_lock but does not initialize it. Fix it. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
parent
1001354ca3
commit
c699995663
@ -474,6 +474,7 @@ static int meson_pwm_probe(struct platform_device *pdev)
|
|||||||
if (IS_ERR(meson->base))
|
if (IS_ERR(meson->base))
|
||||||
return PTR_ERR(meson->base);
|
return PTR_ERR(meson->base);
|
||||||
|
|
||||||
|
spin_lock_init(&meson->lock);
|
||||||
meson->chip.dev = &pdev->dev;
|
meson->chip.dev = &pdev->dev;
|
||||||
meson->chip.ops = &meson_pwm_ops;
|
meson->chip.ops = &meson_pwm_ops;
|
||||||
meson->chip.base = -1;
|
meson->chip.base = -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user