nodedev: Include PCI vendor in pretty name

Pretty important if trying to distinguish between devices
This commit is contained in:
Cole Robinson 2014-01-12 14:52:33 -05:00
parent cad64c0dc1
commit 52bb0f6067

View File

@ -172,7 +172,7 @@ class PCIDevice(NodeDevice):
int(self.slot),
int(self.function))
return "%s %s %s" % (devstr, self.product_name)
return "%s %s %s" % (devstr, self.vendor_name, self.product_name)
class USBDevice(NodeDevice):