linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tpm: fix the cleanup of struct tpm_chip
@ 2016-02-09  3:30 Jarkko Sakkinen
  2016-02-09  5:26 ` [tpmdd-devel] " Jason Gunthorpe
  2016-02-11 19:34 ` Jason Gunthorpe
  0 siblings, 2 replies; 7+ messages in thread
From: Jarkko Sakkinen @ 2016-02-09  3:30 UTC (permalink / raw)
  To: Peter Huewe; +Cc: tpmdd-devel, linux-kernel, Jarkko Sakkinen, stable

If the initialization fails before tpm_chip_register(), put_device()
will be not called, which causes release callback not to be called.
This patch fixes the issue by adding put_device() to devres list of
the parent device.

Fixes: 313d21eeab ("tpm: device class for tpm")
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
cc: stable@vger.kernel.org
---
 drivers/char/tpm/tpm-chip.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/char/tpm/tpm-chip.c b/drivers/char/tpm/tpm-chip.c
index 1a9dcee..ea904d1 100644
--- a/drivers/char/tpm/tpm-chip.c
+++ b/drivers/char/tpm/tpm-chip.c
@@ -136,6 +136,8 @@ struct tpm_chip *tpmm_chip_alloc(struct device *dev,
 	chip->cdev.owner = chip->pdev->driver->owner;
 	chip->cdev.kobj.parent = &chip->dev.kobj;
 
+	devm_add_action(dev, (void (*)(void *)) put_device, &chip->dev);
+
 	return chip;
 }
 EXPORT_SYMBOL_GPL(tpmm_chip_alloc);
-- 
2.7.0

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

end of thread, other threads:[~2016-02-12  3:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-09  3:30 [PATCH] tpm: fix the cleanup of struct tpm_chip Jarkko Sakkinen
2016-02-09  5:26 ` [tpmdd-devel] " Jason Gunthorpe
2016-02-09  6:19   ` Jarkko Sakkinen
2016-02-09  6:27     ` Jarkko Sakkinen
2016-02-09 17:00       ` Jason Gunthorpe
2016-02-11 19:34 ` Jason Gunthorpe
2016-02-12  3:35   ` Jarkko Sakkinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).