diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/systemagent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/systemagent.h b/src/soc/intel/common/block/include/intelblocks/systemagent.h index 11ea76a089..30c892ba13 100644 --- a/src/soc/intel/common/block/include/intelblocks/systemagent.h +++ b/src/soc/intel/common/block/include/intelblocks/systemagent.h @@ -31,13 +31,13 @@ void bootblock_systemagent_early_init(void); * INDEX = Either PCI configuration space registers or MMIO offsets * mapped from REG. * BASE = 64 bit Address. - * SIZE = base length + * SIZE = 64 bit base length * DESCRIPTION = Name of the register/offset. */ struct sa_mmio_descriptor { unsigned int index; uint64_t base; - size_t size; + uint64_t size; const char *description; }; |