mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-06-23 15:11:42 +00:00
tpm: Fix fault in case CONFIG_DM_TPM is set without any TPM
In case CONFIG_DM_TPM was set without any TPM chipset configured a fault was generated (NULL pointer access). Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
This commit is contained in:
parent
3faf2216d9
commit
0e37d4c2c6
2 changed files with 2 additions and 2 deletions
|
@ -448,7 +448,7 @@ static int get_tpm(struct udevice **devp)
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
rc = uclass_first_device(UCLASS_TPM, devp);
|
rc = uclass_first_device(UCLASS_TPM, devp);
|
||||||
if (rc) {
|
if (rc || !*devp) {
|
||||||
printf("Could not find TPM (ret=%d)\n", rc);
|
printf("Could not find TPM (ret=%d)\n", rc);
|
||||||
return CMD_RET_FAILURE;
|
return CMD_RET_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -262,7 +262,7 @@ int tpm_init(void)
|
||||||
struct udevice *dev;
|
struct udevice *dev;
|
||||||
|
|
||||||
err = uclass_first_device(UCLASS_TPM, &dev);
|
err = uclass_first_device(UCLASS_TPM, &dev);
|
||||||
if (err)
|
if (err || !dev)
|
||||||
return err;
|
return err;
|
||||||
return tpm_open(dev);
|
return tpm_open(dev);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue