mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00
tpm: unconstify tpm_tis_chip_data
The struct contains an iomem pointer that we later remap and update. Remove const from the struct definition. Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
This commit is contained in:
parent
714a0227fe
commit
92880a58ca
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ static const struct tpm_ops tpm_tis_ops = {
|
|||
.cleanup = tpm_tis_cleanup,
|
||||
};
|
||||
|
||||
static const struct tpm_tis_chip_data tpm_tis_std_chip_data = {
|
||||
static struct tpm_tis_chip_data tpm_tis_std_chip_data = {
|
||||
.pcr_count = 24,
|
||||
.pcr_select_min = 3,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue