Skip to content

Commit 46d22bf

Browse files
committed
Merge tag 'tpmdd-next-6.11-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd
Pull TPM fix from Jarkko Sakkinen: "A bug fix for tpm_ibmvtpm driver so that it will take the bus encryption into use" * tag 'tpmdd-next-6.11-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd: tpm: ibmvtpm: Call tpm2_sessions_init() to initialize session support
2 parents 3ec3f5f + 08d08e2 commit 46d22bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/char/tpm/tpm_ibmvtpm.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,10 @@ static int tpm_ibmvtpm_probe(struct vio_dev *vio_dev,
698698
rc = tpm2_get_cc_attrs_tbl(chip);
699699
if (rc)
700700
goto init_irq_cleanup;
701+
702+
rc = tpm2_sessions_init(chip);
703+
if (rc)
704+
goto init_irq_cleanup;
701705
}
702706

703707
return tpm_chip_register(chip);

0 commit comments

Comments
 (0)