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

+4
+4
drivers/char/tpm/tpm_ibmvtpm.c
··· 698 rc = tpm2_get_cc_attrs_tbl(chip); 699 if (rc) 700 goto init_irq_cleanup; 701 } 702 703 return tpm_chip_register(chip);
··· 698 rc = tpm2_get_cc_attrs_tbl(chip); 699 if (rc) 700 goto init_irq_cleanup; 701 + 702 + rc = tpm2_sessions_init(chip); 703 + if (rc) 704 + goto init_irq_cleanup; 705 } 706 707 return tpm_chip_register(chip);