Browse Source

cli: describe USB devices as such

This makes it clear if the hardware is embedded or usb/pci based.

Signed-off-by: Andre Heider <a.heider@gmail.com>
Andre Heider 1 year ago
parent
commit
dbc0ee7c57
1 changed files with 4 additions and 0 deletions
  1. 4 0
      iwinfo_cli.c

+ 4 - 0
iwinfo_cli.c

@@ -337,6 +337,10 @@ static char * print_hardware_id(const struct iwinfo_ops *iw, const char *ifname)
 	{
 		if (strlen(ids.compatible) > 0)
 			snprintf(buf, sizeof(buf), "embedded");
+		else if (ids.vendor_id == 0 && ids.device_id == 0 &&
+			 ids.subsystem_vendor_id != 0 && ids.subsystem_device_id != 0)
+			snprintf(buf, sizeof(buf), "USB %04X:%04X",
+				ids.subsystem_vendor_id, ids.subsystem_device_id);
 		else
 			snprintf(buf, sizeof(buf), "%04X:%04X %04X:%04X",
 				ids.vendor_id, ids.device_id,