summaryrefslogtreecommitdiffstats
path: root/src/soc/amd
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-12-12 19:59:14 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-12-13 20:28:10 +0000
commit0fe8643465ac63674ed731b60576bc945890bd05 (patch)
tree74e28d54329eabfd3a34164cf54291ac987ae257 /src/soc/amd
parentd01826843e258cb262961ea0bde05eb80754747a (diff)
downloadcoreboot-0fe8643465ac63674ed731b60576bc945890bd05.tar.gz
coreboot-0fe8643465ac63674ed731b60576bc945890bd05.tar.bz2
coreboot-0fe8643465ac63674ed731b60576bc945890bd05.zip
soc/amd/genoa/domain: fix indentation in genoa_pci_domain_ops
There's no need for the two additional spaces between the tabs and the '='. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Ic6824e8c7ee870fc44c5efd70cc05677e9948a9e Reviewed-on: https://review.coreboot.org/c/coreboot/+/79464 Reviewed-by: Martin L Roth <gaumless@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/genoa/domain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/genoa/domain.c b/src/soc/amd/genoa/domain.c
index e42823009da7..99d7edc76b7f 100644
--- a/src/soc/amd/genoa/domain.c
+++ b/src/soc/amd/genoa/domain.c
@@ -49,7 +49,7 @@ static void genoa_domain_set_resources(struct device *domain)
}
struct device_operations genoa_pci_domain_ops = {
- .read_resources = genoa_domain_read_resources,
- .set_resources = genoa_domain_set_resources,
- .scan_bus = amd_pci_domain_scan_bus,
+ .read_resources = genoa_domain_read_resources,
+ .set_resources = genoa_domain_set_resources,
+ .scan_bus = amd_pci_domain_scan_bus,
};