libpayload/libpci: Introduce device class attribute in pci_dev
The device class is read at different places and it is read from the hardware directly. Therefore, and in preparation to CB:46416, introduce the device class attribute in the pci_dev struct. With this, there is only one interaction with the hardware and it's also more user friendly. Change-Id: I5d56be96f3f0da471246f031ea619e3df8e54cfb Signed-off-by: Felix Singer <felix.singer@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46347 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@ -74,6 +74,7 @@ struct pci_dev {
|
||||
u16 domain;
|
||||
u8 bus, dev, func;
|
||||
u16 vendor_id, device_id;
|
||||
u16 device_class;
|
||||
struct pci_dev *next;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user