device/device.h: Rename busses for clarity
This renames bus to upstream and link_list to downstream. Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: I80a81b6b8606e450ff180add9439481ec28c2420 Reviewed-on: https://review.coreboot.org/c/coreboot/+/78330 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
committed by
Felix Held
parent
3138faa7cf
commit
7fcd4d58ec
@@ -1114,8 +1114,8 @@ static int smbios_generate_type41_from_devtree(struct device *dev, int *handle,
|
||||
return smbios_write_type41(current, handle,
|
||||
name, // name
|
||||
instance_id, // inst
|
||||
dev->bus->segment_group, // segment group
|
||||
dev->bus->secondary, //bus
|
||||
dev->upstream->segment_group, // segment group
|
||||
dev->upstream->secondary, //bus
|
||||
PCI_SLOT(dev->path.pci.devfn), // device
|
||||
PCI_FUNC(dev->path.pci.devfn), // func
|
||||
device_type);
|
||||
@@ -1167,8 +1167,8 @@ static int smbios_generate_type9_from_devtree(struct device *dev, int *handle,
|
||||
0,
|
||||
1,
|
||||
0,
|
||||
dev->bus->segment_group,
|
||||
dev->bus->secondary,
|
||||
dev->upstream->segment_group,
|
||||
dev->upstream->secondary,
|
||||
dev->path.pci.devfn);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user