|
@@ -623,7 +623,14 @@ static int tpm_tis_pnp_suspend(struct pnp_dev *dev, pm_message_t msg)
|
|
|
|
|
|
static int tpm_tis_pnp_resume(struct pnp_dev *dev)
|
|
|
{
|
|
|
- return tpm_pm_resume(&dev->dev);
|
|
|
+ struct tpm_chip *chip = pnp_get_drvdata(dev);
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = tpm_pm_resume(&dev->dev);
|
|
|
+ if (!ret)
|
|
|
+ tpm_continue_selftest(chip);
|
|
|
+
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
static struct pnp_device_id tpm_pnp_tbl[] __devinitdata = {
|