Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/79464?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: soc/amd/genoa/domain: fix indentation in genoa_pci_domain_ops ......................................................................
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 --- M src/soc/amd/genoa/domain.c 1 file changed, 3 insertions(+), 3 deletions(-)
Approvals: Martin L Roth: Looks good to me, approved build bot (Jenkins): Verified Varshit Pandya: Looks good to me, approved
diff --git a/src/soc/amd/genoa/domain.c b/src/soc/amd/genoa/domain.c index e428230..99d7edc 100644 --- a/src/soc/amd/genoa/domain.c +++ b/src/soc/amd/genoa/domain.c @@ -49,7 +49,7 @@ }
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, };