diff options
Diffstat (limited to 'src/soc/intel/common/block/systemagent')
-rw-r--r-- | src/soc/intel/common/block/systemagent/systemagent.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index cb7af41518..3be65f919b 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -36,6 +36,13 @@ __attribute__((weak)) void soc_add_fixed_mmio_resources(struct device *dev, /* no-op */ } +__attribute__((weak)) int soc_get_uncore_prmmr_base_and_mask(uint64_t *base, + uint64_t *mask) +{ + /* return failure for this dummy API */ + return -1; +} + /* * Add all known fixed MMIO ranges that hang off the host bridge/memory * controller device. |