diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-07 19:00:18 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-07 19:00:18 +0000 |
commit | 179da8afe61753453bc70a93ba0f0f4081e06f4d (patch) | |
tree | e75dc074086c30322a2f7b43307b1eb3b11172f3 /usb-linux.c | |
parent | 1e43a8e4d263809aa4e606a8a16667fbfd0d754f (diff) |
USB: use opaque parameter passing for monitor handle
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'usb-linux.c')
-rw-r--r-- | usb-linux.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usb-linux.c b/usb-linux.c index 043f6b6ba1..036b39b561 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1605,12 +1605,11 @@ static const char *usb_class_str(uint8_t class) return p->class_name; } -static void usb_info_device(int bus_num, int addr, int class_id, +static void usb_info_device(Monitor *mon, int bus_num, int addr, int class_id, int vendor_id, int product_id, const char *product_name, int speed) { - Monitor *mon = cur_mon; const char *class_str, *speed_str; switch(speed) { @@ -1647,7 +1646,9 @@ static int usb_host_info_device(void *opaque, int bus_num, int addr, const char *product_name, int speed) { - usb_info_device(bus_num, addr, class_id, vendor_id, product_id, + Monitor *mon = opaque; + + usb_info_device(mon, bus_num, addr, class_id, vendor_id, product_id, product_name, speed); return 0; } @@ -1672,7 +1673,7 @@ void usb_host_info(Monitor *mon) { struct USBAutoFilter *f; - usb_host_scan(NULL, usb_host_info_device); + usb_host_scan(mon, usb_host_info_device); if (usb_auto_filter) monitor_printf(mon, " Auto filters:\n"); |