1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

Userland: Rename PCI slot to PCI device terminology

This commit is contained in:
Jean-Baptiste Boric 2021-01-31 12:32:50 +01:00 committed by Andreas Kling
parent 06d76a4717
commit b48d8d1d6d
3 changed files with 5 additions and 5 deletions

View file

@ -363,7 +363,7 @@ static bool procfs$pci(InodeIdentifier, KBufferBuilder& builder)
auto obj = array.add_object();
obj.add("seg", address.seg());
obj.add("bus", address.bus());
obj.add("slot", address.device());
obj.add("device", address.device());
obj.add("function", address.function());
obj.add("vendor_id", id.vendor_id);
obj.add("device_id", id.device_id);