From 179da8afe61753453bc70a93ba0f0f4081e06f4d Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Mon, 7 Sep 2009 19:00:18 +0000 Subject: [PATCH] USB: use opaque parameter passing for monitor handle Signed-off-by: Blue Swirl --- usb-bsd.c | 9 +++++---- usb-linux.c | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/usb-bsd.c b/usb-bsd.c index 5becea561..693f2ca85 100644 --- a/usb-bsd.c +++ b/usb-bsd.c @@ -552,13 +552,12 @@ 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) { const char *class_str, *speed_str; - Monitor *mon = cur_mon; switch(speed) { case USB_SPEED_LOW: @@ -595,14 +594,16 @@ static int usb_host_info_device(void *opaque, 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; } void usb_host_info(Monitor *mon) { - usb_host_scan(NULL, usb_host_info_device); + usb_host_scan(mon, usb_host_info_device); } /* XXX add this */ diff --git a/usb-linux.c b/usb-linux.c index 043f6b6ba..036b39b56 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"); -- 2.39.2