summaryrefslogtreecommitdiff
path: root/src/soc/intel/xeon_sp
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2024-08-14 17:55:41 +0200
committerFelix Held <felix-coreboot@felixheld.de>2024-08-15 21:41:59 +0000
commitc6889816d8ae8c0f15b7707820e6c40c311d5393 (patch)
tree5fbf2fe38b7d1bf0bd5596281a2adc566d7e03f1 /src/soc/intel/xeon_sp
parent078a5a0e7ca006f6536d3a72e94f49f4d52f8953 (diff)
soc/intel/xeon_sp/uncore_acpi: use is_dev_on_domain0 where possible
Replace 'is_domain0(dev_get_domain(dev))' with 'is_dev_on_domain0(dev)' which is a helper function that does exactly the same, but slightly simplifies the call. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I8b0c52a9176288039e6414a09c3fe0662db79e4b Reviewed-on: https://review.coreboot.org/c/coreboot/+/83908 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Shuo Liu <shuo.liu@intel.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/soc/intel/xeon_sp')
-rw-r--r--src/soc/intel/xeon_sp/uncore_acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/xeon_sp/uncore_acpi.c b/src/soc/intel/xeon_sp/uncore_acpi.c
index 0b2b9f4107..baffdd0e96 100644
--- a/src/soc/intel/xeon_sp/uncore_acpi.c
+++ b/src/soc/intel/xeon_sp/uncore_acpi.c
@@ -532,7 +532,7 @@ static unsigned long acpi_fill_dmar(unsigned long current)
struct device *dev = NULL;
struct device *iommu0 = NULL;
while ((dev = dev_find_device(PCI_VID_INTEL, MMAP_VTD_CFG_REG_DEVID, dev))) {
- if (is_domain0(dev_get_domain(dev))) {
+ if (is_dev_on_domain0(dev)) {
iommu0 = dev;
continue;
}