1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2011 matt mooney <mfm@muteddisk.com>
4 * 2005-2007 Takahiro Hirofuchi
7 #include "vhci_driver.h"
8 #include "usbip_common.h"
10 static int list_imported_devices(void)
13 struct usbip_imported_device
*idev
;
16 if (usbip_names_init(USBIDS_FILE
))
17 err("failed to open %s", USBIDS_FILE
);
19 ret
= usbip_vhci_driver_open();
21 err("open vhci_driver");
25 printf("Imported USB devices\n");
26 printf("====================\n");
28 for (i
= 0; i
< vhci_driver
->nports
; i
++) {
29 idev
= &vhci_driver
->idev
[i
];
31 if (usbip_vhci_imported_device_dump(idev
) < 0)
32 goto err_driver_close
;
35 usbip_vhci_driver_close();
41 usbip_vhci_driver_close();
47 int usbip_port_show(__attribute__((unused
)) int argc
,
48 __attribute__((unused
)) char *argv
[])
52 ret
= list_imported_devices();
54 err("list imported devices");