All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pwm: meson: Fix missing spin_lock_init
@ 2016-09-10  1:55 Axel Lin
  2016-09-10 13:49 ` Neil Armstrong
  2016-10-21  7:12 ` Thierry Reding
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2016-09-10  1:55 UTC (permalink / raw)
  To: Thierry Reding; +Cc: Neil Armstrong, linux-pwm, Axel Lin

The driver uses the spin_lock but not initialize it, fix it.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/pwm/pwm-meson.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pwm/pwm-meson.c b/drivers/pwm/pwm-meson.c
index 381871b..9d5bd7d 100644
--- a/drivers/pwm/pwm-meson.c
+++ b/drivers/pwm/pwm-meson.c
@@ -474,6 +474,7 @@ static int meson_pwm_probe(struct platform_device *pdev)
 	if (IS_ERR(meson->base))
 		return PTR_ERR(meson->base);
 
+	spin_lock_init(&meson->lock);
 	meson->chip.dev = &pdev->dev;
 	meson->chip.ops = &meson_pwm_ops;
 	meson->chip.base = -1;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-28  2:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-10  1:55 [PATCH] pwm: meson: Fix missing spin_lock_init Axel Lin
2016-09-10 13:49 ` Neil Armstrong
2016-10-21  7:12 ` Thierry Reding
2016-11-28  2:28   ` Axel Lin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.